From 6bbb59a8df200317ceba35ddd9ba5a62a6811572 Mon Sep 17 00:00:00 2001 From: Baohua Yang Date: Fri, 5 Jan 2018 14:37:52 +0800 Subject: [PATCH] Add more chaincodes --- .../latest/scripts/initialize_peer0.sh | 6 +- .../latest/scripts/test_cc_install.sh | 12 +- .../latest/scripts/test_cc_instantiate.sh | 9 +- .../latest/scripts/test_cc_invoke_query.sh | 19 +- .../latest/scripts/test_cc_upgrade.sh | 19 +- .../latest/scripts/test_lscc.sh | 13 +- .../latest/scripts/variables.sh | 14 +- .../channel-artifacts/businesschannel_0.block | Bin 12128 -> 12127 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 5331 -> 5332 bytes .../channel-artifacts/businesschannel_4.block | Bin 5337 -> 5336 bytes .../channel-artifacts/businesschannel_5.block | Bin 4793 -> 4792 bytes .../channel-artifacts/businesschannel_6.block | Bin 4797 -> 4797 bytes .../channel-artifacts/businesschannel_7.block | Bin 21280 -> 21277 bytes .../businesschannel_config.block | Bin 21280 -> 21277 bytes .../businesschannel_config.block.json | 24 +- .../solo/channel-artifacts/config_delta.pb | Bin 2967 -> 2967 bytes .../channel-artifacts/config_delta_env.pb | Bin 5734 -> 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 14873 -> 14872 bytes .../solo/channel-artifacts/updated_config.pb | Bin 11821 -> 11821 bytes .../latest/solo/logs/dev_all.log | 32053 ++++++++-------- .../latest/solo/logs/dev_orderer.log | 8565 +++-- .../latest/solo/logs/dev_peer0.log | 6384 +-- 26 files changed, 23721 insertions(+), 23397 deletions(-) diff --git a/hyperledger_fabric/latest/scripts/initialize_peer0.sh b/hyperledger_fabric/latest/scripts/initialize_peer0.sh index d8732224..00d6392e 100644 --- a/hyperledger_fabric/latest/scripts/initialize_peer0.sh +++ b/hyperledger_fabric/latest/scripts/initialize_peer0.sh @@ -24,8 +24,10 @@ echo_b "Updating anchor peers for peer0/org1... no use for only single channel" channelUpdate ${APP_CHANNEL} 1 0 Org1MSPanchors.tx ## Install chaincode on all peers -echo_b "Installing chaincode on peer0..." -chaincodeInstall 0 ${CC_02_INIT_ARGS} +CC_NAME=${CC_02_NAME} +CC_PATH=${CC_02_PATH} +echo_b "Installing chaincode ${CC_NAME} on peer0..." +chaincodeInstall 1 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} # Instantiate chaincode on all peers # Instantiate can only be executed once on any node diff --git a/hyperledger_fabric/latest/scripts/test_cc_install.sh b/hyperledger_fabric/latest/scripts/test_cc_install.sh index bd3a1d6b..3db969d4 100644 --- a/hyperledger_fabric/latest/scripts/test_cc_install.sh +++ b/hyperledger_fabric/latest/scripts/test_cc_install.sh @@ -8,10 +8,12 @@ elif [ -f scripts/func.sh ]; then fi ## Install chaincode on all peers -echo_b "Installing chaincode on all 4 peers..." -chaincodeInstall 1 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} -chaincodeInstall 1 1 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} -chaincodeInstall 2 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} -chaincodeInstall 2 1 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} +CC_NAME=${CC_02_NAME} +CC_PATH=${CC_02_PATH} +echo_b "Installing chaincode ${CC_NAME} on all 4 peers..." +chaincodeInstall 1 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} +chaincodeInstall 1 1 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} +chaincodeInstall 2 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} +chaincodeInstall 2 1 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} echo_g "=== Install chaincode done ===" \ No newline at end of file diff --git a/hyperledger_fabric/latest/scripts/test_cc_instantiate.sh b/hyperledger_fabric/latest/scripts/test_cc_instantiate.sh index 9497b69a..8f1edf19 100644 --- a/hyperledger_fabric/latest/scripts/test_cc_instantiate.sh +++ b/hyperledger_fabric/latest/scripts/test_cc_instantiate.sh @@ -7,10 +7,11 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi -# Instantiate chaincode on all peers -# Instantiate can only be executed once on any node +# Instantiate chaincode in the channel, executed once on any node is enough +CC_NAME=${CC_02_NAME} +CC_INIT_ARGS=${CC_02_INIT_ARGS} echo_b "Instantiating chaincode on channel ${APP_CHANNEL} (once for each channel is enough, we make it concurrent here)..." -chaincodeInstantiate "${APP_CHANNEL}" 1 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_INIT_ARGS} -chaincodeInstantiate "${APP_CHANNEL}" 2 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_INIT_ARGS} +chaincodeInstantiate "${APP_CHANNEL}" 1 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS} +chaincodeInstantiate "${APP_CHANNEL}" 2 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS} echo_g "=== Instantiate chaincode done ===" diff --git a/hyperledger_fabric/latest/scripts/test_cc_invoke_query.sh b/hyperledger_fabric/latest/scripts/test_cc_invoke_query.sh index 6da08f35..79d4f883 100644 --- a/hyperledger_fabric/latest/scripts/test_cc_invoke_query.sh +++ b/hyperledger_fabric/latest/scripts/test_cc_invoke_query.sh @@ -7,26 +7,29 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi +CC_NAME=${CC_02_NAME} +CC_INVOKE_ARGS=${CC_02_INVOKE_ARGS} +CC_QUERY_ARGS=${CC_02_QUERY_ARGS} #Query on chaincode on Peer0/Org1 -echo_b "Querying chaincode on peer org2/peer0..." -chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 100 +echo_b "Querying chaincode ${CC_NAME} on peer org2/peer0..." +chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 100 #Invoke on chaincode on Peer0/Org1 echo_b "Sending invoke transaction (transfer 10) on org1/peer0..." -chaincodeInvoke ${APP_CHANNEL} 1 0 ${CC_02_NAME} ${CC_02_INVOKE_ARGS} +chaincodeInvoke ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_INVOKE_ARGS} #Query on chaincode on Peer1/Org2, check if the result is 90 echo_b "Querying chaincode on peer 1 and 3..." -chaincodeQuery ${APP_CHANNEL} 1 1 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 90 -chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 90 +chaincodeQuery ${APP_CHANNEL} 1 1 ${CC_NAME} ${CC_QUERY_ARGS} 90 +chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 90 #Invoke on chaincode on Peer1/Org2 echo_b "Sending invoke transaction on org2/peer3..." -chaincodeInvoke ${APP_CHANNEL} 2 1 ${CC_02_NAME} ${CC_02_INVOKE_ARGS} +chaincodeInvoke ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_INVOKE_ARGS} #Query on chaincode on Peer1/Org2, check if the result is 80 echo_b "Querying chaincode on all 4peers..." -chaincodeQuery ${APP_CHANNEL} 1 0 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 80 -chaincodeQuery ${APP_CHANNEL} 2 0 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 80 +chaincodeQuery ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_QUERY_ARGS} 80 +chaincodeQuery ${APP_CHANNEL} 2 0 ${CC_NAME} ${CC_QUERY_ARGS} 80 echo_g "=== All GOOD, chaincode invoke/query completed ===" diff --git a/hyperledger_fabric/latest/scripts/test_cc_upgrade.sh b/hyperledger_fabric/latest/scripts/test_cc_upgrade.sh index 4b04203d..b6099b68 100644 --- a/hyperledger_fabric/latest/scripts/test_cc_upgrade.sh +++ b/hyperledger_fabric/latest/scripts/test_cc_upgrade.sh @@ -7,18 +7,21 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi +CC_NAME=${CC_02_NAME} +CC_PATH=${CC_02_PATH} +CC_UPGRADE_ARGS=${CC_02_UPGRADE_ARGS} #Upgrade to new version -echo_b "Upgrade chaincode to new version..." -chaincodeInstall 1 0 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" -chaincodeInstall 1 1 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" -chaincodeInstall 2 0 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" -chaincodeInstall 2 1 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" +echo_b "Upgrade chaincode ${CC_NAME} to new version..." +chaincodeInstall 1 0 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}" +chaincodeInstall 1 1 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}" +chaincodeInstall 2 0 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}" +chaincodeInstall 2 1 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}" # Upgrade on one peer of the channel will update all -chaincodeUpgrade ${APP_CHANNEL} 1 0 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_UPGRADE_ARGS}" +chaincodeUpgrade ${APP_CHANNEL} 1 0 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_UPGRADE_ARGS}" # Query new value, should refresh through all peers in the channel -chaincodeQuery ${APP_CHANNEL} 1 0 "${CC_02_NAME}" "${CC_02_QUERY_ARGS}" 100 -chaincodeQuery ${APP_CHANNEL} 2 1 "${CC_02_NAME}" "${CC_02_QUERY_ARGS}" 100 +chaincodeQuery ${APP_CHANNEL} 1 0 "${CC_NAME}" "${CC_QUERY_ARGS}" 100 +chaincodeQuery ${APP_CHANNEL} 2 1 "${CC_NAME}" "${CC_QUERY_ARGS}" 100 echo_g "=== All GOOD, chaincode Upgrade completed ===" diff --git a/hyperledger_fabric/latest/scripts/test_lscc.sh b/hyperledger_fabric/latest/scripts/test_lscc.sh index e32bfb7a..1b9424a1 100644 --- a/hyperledger_fabric/latest/scripts/test_lscc.sh +++ b/hyperledger_fabric/latest/scripts/test_lscc.sh @@ -19,14 +19,15 @@ peer=0 #--tls "true" \ #--cafile ${ORDERER_TLS_CA} \ +CC_NAME=${CC_02_NAME} echo_b "LSCC Get id" -chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getid","'${APP_CHANNEL}'", "'${CC_NAME}'"]}' echo_b "LSCC Get cc ChaincodeDeploymentSpec" -chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_CHANNEL}'", "'${CC_NAME}'"]}' echo_b "LSCC Get cc bytes" -chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'${CC_NAME}'"]}' echo_b "LSCC Get all chaincodes installed on the channel" chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getinstalledchaincodes"]}' @@ -38,17 +39,17 @@ chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getchaincodes"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +# -c '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +# -c '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +# -c '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ diff --git a/hyperledger_fabric/latest/scripts/variables.sh b/hyperledger_fabric/latest/scripts/variables.sh index 369bc61d..66a40c1c 100644 --- a/hyperledger_fabric/latest/scripts/variables.sh +++ b/hyperledger_fabric/latest/scripts/variables.sh @@ -39,17 +39,25 @@ ORG1_PEER1_URL="peer1.org1.example.com:7051" ORG2_PEER0_URL="peer0.org2.example.com:7051" ORG2_PEER1_URL="peer1.org2.example.com:7051" -# Chaincode related -CC_02_NAME="exp02" -CC_02_PATH="examples/chaincode/go/chaincode_example02" CC_INIT_VERSION=1.0 CC_UPGRADE_VERSION=1.1 +# Chaincode exp02 related +CC_02_NAME="exp02" +CC_02_PATH="examples/chaincode/go/chaincode_example02" CC_02_INIT_ARGS='{"Args":["init","a","100","b","200"]}' CC_02_UPGRADE_ARGS='{"Args":["upgrade","a","100","b","200"]}' CC_02_INVOKE_ARGS='{"Args":["invoke","a","b","10"]}' CC_02_QUERY_ARGS='{"Args":["query","a"]}' +# Chaincode map related +CC_MAP_NAME="map" +CC_MAP_PATH="examples/chaincode/go/map" +CC_MAP_INIT_ARGS='{"Args":["init",""]}' +CC_MAP_UPGRADE_ARGS='{"Args":["upgrade",""]}' +CC_MAP_INVOKE_ARGS='{"Args":["invoke","put","key","value"]}' +CC_MAP_QUERY_ARGS='{"Args":["get","key"]}' + # TLS config CORE_PEER_TLS_ENABLED="true" diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block index 0ce3c0a65d6b53a96e4cee0a2835e17bf1b0a12b..e1089781984ea8fb325bc9027ee773ebc7ff3b50 100644 GIT binary patch delta 498 zcmVb)HTn+{jI)0O zdJ2<+4kMHJ4T_V)DoB&c4p6f`4EA5DMQ03L6Ll8U_gJxxBNg zCOrchc<^7G0d;?;gv2mQPOoav7yXGMjhXz~62h|qDmMWGiU$g_z9uOHe;Ac{K%Q_1 znSoU=Q8l2Uzjk@3X70Z!OGn z1VI1-AUT{-v)WP>BVH0l`Vk*k1Z+@CA-5>j`a}NhXZOuMloCcTL;@gTl@DT;$C$xv zA~~rIU|1b^t!P0^u5~h0e8I6c=_95;0w7PDJ6zT^G|++D$S8G*l-7*Pf*UV>L^I-* z0)cME(%uqBFhv3(0O5A|n-f2Obq{O5`l*G6wPCF&K*BPnpg-D+b=@0Y*og0{yR2nqlS015yK0RF4XdjJ3c delta 513 zcmcZ~_aM%SOG!$>?~JzL(u%WzX97Q*FXumd!b6{Nv+f4w!rw`LvjcZ2z86{_$F(Mo z>tQU{SvD?d4n`?9j`!zxZ?w{8mfHAV-{s6J=R_Swy%Rx;H~yB@veZ$Vct}pDZ*x6! z71v~0zRt-%cvU7p*HW4MjxS)cyPC>oJAM_e$!035lix`4Oiou(1Jg`Eew!rU<{y&B zxF)Nq6;58MS~Xc;Ref@ks>b9nRc){dQv50)6Qs4+98+>L^NNMO2ym?s;JOcT6%)i& zn^&pXGD`*De50IgYjmY8d|sK=hSfhaG;J=aUOIVE=#Hji zyzB2zFY=d@ZEw}R@{wirpLFpn_acPc4P2QN873s@Toa#sqPTcZq^85e6I$D~Cw;l- z=Jw>u)e8+9BTv^bDFm+5Q<%rSli##(nPKJo3tReb7cDUT*Z*YRNzs}U*NXh02K`NX zCwEu6OY_E|$GWH2ZsBJsPCESm$oX2I=g%x&T;}F~%%mWC;H*VD=PTR7rueh0j;0?L z1+IOsc%(te@$B2Ld4G9!3%MD%FexbhVV$e`qe(M%!QnaF*YEA}H`{RariJ1^W|xC? yXIdt-Gby;2|7!m$-h2JVy~^oV_2;|UI~h9fOcHzkFGIJIAF_xG||r+VC9PwcSwkD~z_h315Fopa-05<2O&Ig3A%YqExv z-sGbyYLmUBcqV_8G~OI0b)0MRSv7^plBymYT5OIfxtV#zo7XTGa!qdGbDJ!~mkyLs zo&27!dUCI-`s6#RI+M4kYE0%(tDT&x3f3hJ(_Q3%%N_}EKzIo zW{DV6>ehzP;8xG*W?AK9SMue#~7=wkV#DYGLyOt{3`FK(VCH*weXLz zYTkXtxpQSNhbmX+NYB#aTQ2CbBcR4vA7YNcPSwOD_BC~fqW=qS6c^1u>e-byKlbsh z=K88%!n&8@M3@wEGPu|8)BCe1EiLja_c=bV)`?g7oJ$V`>GBj-B(Pt(B;;=3%B0A! zhI78X_=>($JFkX+VrTO5lgdlndC^j^uWa7dgIu@YUIe;XZK;d^+vf9~`qSsd_S>m* zF29srE|t8?jC;$!6%&P*NVW2D{bm#T!N#?gjcfBXeG%sL&))B3Kj<$EuUb~2F;Ujb zv#O_6UsjLf9K`WSLbAKER$o>4{%@gC}D$vSJ5kHK6 zypeACmu%4yAMg6O=8@XJcK4f^ChME$u=190HL!CraWHP~*Oz8aox4LjP4Ekwvfga* zz&%;(w)U@CfBdSv-b<(lyPpLf`}Zs+vte%C^}S#9c0O%>AiHQ!{9?IUeN!_r9#bZT p;IQo_Hv*W1)OU%V!9LUiAZ>7}@%^JiP5r!!-WLCb6b+Y*7mW`; z{jj|XiDJ<7oDxScMFJrJlGb`HC~U(P_x*XjT;>>deBHmdL=rP%f5j?(8Gp&#vjQLm zlB9vOQfw^!IWDn1aHmi>bdLsQS$B%+_zd!Kg5PWsMleJIAXUl5{eLSy+%o$B`Px;d z%(*>E*Ma)p-CO#5%lsTK!~!5)Nop60fGT!5FU+!qDW`fdQ_CNg2;Bem=f$c9!ECG= zg$@e*1`_!O3athTvlufJ184+%XO-^Fc141cZM`bE4>s5=JmY z0w7cDZL0QKxTs(eoQLXoM(`23?+JL~;lWtJ%rIs|uDt$`S+GCjC&Jss3MFJrJ$^7z0<;o&_ ztqjSUCdT(!IQKqMfXnzg&MahlN*D%q0w6M<>E6ZHAUqiL+3%mOpD$5j#&TlihE;N7 zMmS}W$6yjhFhl|%eHgza==ds;fyj(gq@p3j^235Rrpe2#e`6U|!jC*#`vM>w-I_8l zkBUQ)V=BIHu^*-BEM}z+YP=$<2%gLhLDIAmMleJIAR~Z(`vWV0ce$m z0B;jg|A~6Nvt80Ww*nwSWRD6HubgvmekKfb3ByJhx$xOuulNBXqM3Bd^G#G5g$@e) z1`_xN3athTvr{t^18KKI3p7$$&jvCIABo*$;qHpg(*V)^(`yn&Fhl|%1d;@t4U$rp zEW>Z7NDxC+D;QOwsZjx`O90J5%FB8E0w7aIAm|;3#8x(6Pye^EPFY3u=(nEpAIO;U zI5-?+N5l$%2MPiR0uuSNPBR$;Wefdd?`a2N*nhcEN(?C1EV1`R&t^5K01`(qMFJrJ zu3(qy{>ys+qAQ|5m!ULy!o5{n^HfxeJBb53IK@DNeKV| delta 786 zcmV+t1MU3FZOd(53PuP55+H6iUdu{Uxli^C+Q~!J5sAH>Gd4K)EOlb;SN zlN=6;lXoR0lQ$15lba85EJpfe~J#yb?z+MFJrJ^)2cf?f=u8B#sXYxL9@mH`qY_6jMFJrJjUvMQFpo)&bRc^t z;DsYiYgN2bKlYlaor-;rq4GED0w67e@~`K02SXuyj?zHjn0}V1@AfaG`l99bsFtn4 ztWygA1_}ZQ0uuPMO*0t-WXt3uQ(N$xu7yPcQdS0$+eE5;&*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~Hafws`~N z*0)pHo-J`Tba}Vi?O~5@kAC{ILZLrGTt7E+v1l_(;Z(9^vOoJI^@ZGA8(Fv%9+^9L z-_qyDT>dy>O$BUgnbk4-Q)868yy}J@YAcI zar$#61@2iL5?}4Mgm%a;FZ%gup`iKK?uo)aXJ;FokUkMP>2ScN&8K-4nG@d3K4QDm zS6A!x?eIQjzPXpY#3RhpHs@GEtnp!vmb(!@(P^7%s@~pdvJn<0%Z}tRT1Wmh*!MfbeX|mG4s!hQ;y!d(9FrQ;I79`|CaNceFT-5Q;TX@6pRJd z1(@I8%y>-l#ag=;+e@@pf%x@Rq=CbKmL|>5SEijnKe(ly7iSmi}h+YneBUhepYiaa4`S?1>YEs delta 667 zcmcbjd0Dfb%Z-CsNWro3TG#Qp2cO#tI=Oi&>#Ic`KX5BRhx^Qzpx4t4TKW2a;~u63a@)D>x_Qy9=|rGVgEZG)DXvXYTpQWBaygi#csPEX z-+hTy;KS<4hZvRklS+#-^HPh8lQRuO@`K}qehYE^*v!SE%`Ame$>z!a?32_NaC2>B;Zj)7_~WDf zm7kr5-b?e=XlP9~Y&f>}%41F4%E~DY_jgGNZ06t)U}Ai^S&~bcx!%pdg-Ic&IxBC@ z8Gg>Rvz^;}a_hG-Zw(cA*k|}DRzm=rk8QbSo-KVDkr*mku&I`)|8$<-mn z1zds$JayME@j2Wt1U5(U9;dITV_d86m-&YtNS555$M9Hw;-n3-S}U$~FV#K#gGnK6 zQr_zNT{qjBwlZwxP`*u5r2iykNHX+oLNU?prhI@x*n{jUJjSYG3K9 uY-3VT-OjdTchTQPHx}Euzt#S5`OuOS=f2zhgzb%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;gjqtp_<3fn zE|+SUmDFQK$0IKlSr@wo@7^A^nU%!=x9ntJ_Sp)OKSXUN|2z=-tF@+7Rr*(=*A=UR zZLuciZN_5Ly;8SZZRX&xWvvhG{8SWTt+DGL&yqd?>0gspzN!~lvy4?)yzG{7Pr?sd zCWZX%tG8@j{zp9iec`&^o2Raxa(CBtVElEg*-Q5BBEb(*LT&~wObSZN?4JK{on1XK z->fo&Now7x$s8rOv#i(Osz0)C+ghJ}ObVfQ4yu27x|{Ritvioc*B6C9+I4+)DmTB% zg{0cf`ODJ{xi%&FJE zzi#?FrC~~_NiXvm_NDt&FMnL6*Tdllb;Opbf;$8oGB*2^1nMxReRPpt6Mw_m>Q~>w zp0zcqhUI^l6ofa_9ZuW#oRMQq_m1i1Ybt~LKFiKcc&3A@W)Z8lvl1}+8wP7D+L delta 643 zcmcbic~i5V%Z-CYNP%xc|ASaTK5aFo$>KM@JpYlg*l#sk!ozvTx+a_utN*Z5N@0KN z`zt%%>K|Jgqs&s^zxu(-Ro_oE-8nD#zV%7~ ze}4BRR)H72mp3vg@h6oQXXd3A7bj;V=H;d4XgMUC86_JTSS4Dd8K$IJm{^#Zm>8y} zSs0lb7+M&lBwM7W8CaO4nOT}ySSBYLCZ#4Dr5OMfm?ozg85kL-r6q6NX~HZKp5l}H zQ|R&)i|f~J%+r%%eAOs$)uv#I@n%*Q1KhHcec5L#6y06XaUpfh|H+jqiwmYmtUNVE zqG;|;i@)EFttmb;W81#X92~Z+_3;ySvnRaY{4wC~(TpphPy8QUK5@iCccXv7-3Bv@ z(~s{mDKK5#ds)1jIXrTexySkmSG0;3!N9ga?m6-Vo8XQyMZf{BEv=|&aFzR zO1{PO1!uYYXtXwK{*uk;{FU6zpoJ-4eRGY(d8MPiN)#3VMAsNNMDW zh%)Uy%q^IrdE@W4&F6U)nG-c#x_i|E7!~gx-PiV}TXnKd;X;kOTbD#a?OAFsdd%W& zg!%EjlQA_*z1C`ZM!V@{Cc2k}a@pN5sn=mr;FQsrw*S81&n^YY_2)nCp0hAV|MxxF z#a8#;C1{E4npU$pP*90EH9l%ln$3rb`WsI&F2B0}Rk|Wg)WT-MJqf5a4~oi~A4aVx zJHl1|%Z-CoNFhM(%BS+h^^>MVPBitY?M{7g@yQjgYta{C^S52CtDSUIN})LQ zmcW@h^}Ni(AHJn_e|;neP-32|9U`Hx?+vxqZhCx*cRKqEr8#LP u222W3PndRZ{+@sTg6QlsS6e>4SbOl`?4{D{4rYf0L2D%Z-CoNP#6pG5x-xv>w;>3!KY&KD$`t%THhqI{TirYw`}R^9hMk3cA~0 zXkUB1vaqJK*Q?+73j4}V&u<5>RbRefzQiCKgF1iD}7}=4Qsm=E+8B28pT3CW%Rj zCME`HriLb|=7we#iDrgImZoWjDL|EpmMInnX{p907AeNY76#@98+V#A%Q}``GG4#+ zn3rnlwNpT_j$@AFb8DDMw$F9s=?{47Aq{uKwaAkC% z+Qq*;LH;vW{-5wZ{fP9x8kw}eyVr&W9*fpUWm533bSSx?vcuVIX3##?1D0P`$}X6< zV{QMZ))PI8Jbo@~6@nPFFGl=K(*o}$#(Wn=n~Uvg=DX~96IZb0R90f9_|yrH9xy4y z_a*+@$Kht;cVOKwUrQnJYkPjA%WZg-#ByTFt&-)`b9^x@cMvAcq@PSrivPFUvfUEU|=pKQv-z{LOnvac3w diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block index 04cf7aa6cbf72c243061dae72b6eecc1df434bd8..6accb3292e00e0777596a9c9b494f7ac013fecaa 100644 GIT binary patch delta 656 zcmdn1x>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~+XyZ;(W{ITAnE6k> zC$9ST^zgIxZB9Sk*9H69i6qS0%*JAXTXwP^yMe+w#_Y`(O=YUy*#`WpF1Y6W!rFqh zKqtv6EA<=Cp#yU3~dMnED1lY*G~`!ADBHhQyX)-)`Bc5RA& z%e9R2Z}le{Gwds7Gs-`~^`DK4iGxY#$7XweN#>OLdp{HB9htF0J^Tz4+dk8h?7NFt z3U99p7IHIiVNx)+ceI_B?(6wuhu4Cim%Y}xSZTBzK4dSOwsJ>8_WQFLObTIN4?gkH k&ht#2^Ro7Sd&`vgs*7j%C1cuVh+PpC%D#1ui-C&)0IPQzSpWb4 delta 656 zcmdn1x>vQH%Z-CgNI|MWLU!`uguZk8-3{OR{anz#^U^u_@79M8_(r|1PPUPdQuu6> z<=NS*y-U_0$3vJ?xOLL~{qvu-7RiRST$sGh_=>8~D>1I;Vq9~?xHhqK<#8}e@o-GP zu=^6Lz=3Ti7BDICCzTdw=A{-FCubz)<)!9mIT)L!7+WS;rKFe{8XKCLnWS2nrdpaC znWq^hnweW#8YP)onwbJ649rYYl8n-fOi~gJO;Sw~&67k4W>yvh+_IB>*$ouZvbcCyPV{@OJHanq{OFo&%NgU! z?|bLFaC)3}7h)@n+B}!Nm$`o8ejC33KlT}A8ZR=CUVK)0haTtOkIuo8Rd3H6dCT{r znn}Sf`*S&qx$SPbGwmKJ6K>4Qd*-|0UfH%&rkt1m*hH+IF63t5!laNVv?2f99>cve zjxXLS7`oh!V~(cXt>rs=P9#6MWiObS&7_d|bE7~J<0OGip;6!MCw^E}9qxQ_i(t1z zGUtBDy4kN>7E87Aas6i7Y{xInoO#=G?#dvJ%Bt7WZ|Y88lGEfmb*M>N%Ig-yG9SJd zHTe};tQI>iq-8t*ns)Nt;?Se>In&lYT`XuK#GS;Xkn-66(*JP1xZkg&e|*#~o;g2n zrH8Mgv;NI*4_C=vQ+UYLz|O_Q!6fu^vje{*bLwu%_=#Uk|1;))2|495nJ?wzO;MK! zG1hrP?gp+*iVP2qr7=0WXGT|Eo}{~!N~QV6Ilk`I=j j@@eKQpX{)dySX7V#Fi~n;7Isz&|=S>p#E=M3|tHVCGiaZ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_7.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_7.block index f9a05916e41dfde95c6f9acda96a095dd5f95940..cfbf91a8c93ce431e4fec52ccc186eb674203da0 100644 GIT binary patch delta 1041 zcmV+s1n&EwrU9L%0bvS82nP}%nt0%!LIGu*M9tHs{Ob4eUsi6FJMzC+gyHk0q7}ta z8X!~NQk&MQe(^ui8?SOCzPbKz=23qzdN`R$gI&pc`3w@umjMdKmjMd-mH`UQ1_~Pp z0U8Dfr@FkcVJia~rJxbr3%E>vf)pOL7l{q^_7J%xy1I~s5~Z`I1JenUuMKIFcnvlI zDw97BkCPw{CX1`3nPBr%h9FC~+SBtWzKB#Y14kwceF)WkfFesBYF)ovEFiVp{ z4(PX>M~8@-qsjGYa1Z3L6Ll8U_fby1bEL6tn*^DFYgX-m)Yv1nZgd zb^eDHcCIpV{GE6zvdGsG!jnQZnX_LS1`3nPBr%h9FC~+SBtVn)npC{5=JmY0w8Rp?*kC#txOM9rwXi31q$fWF2hYQN{cLZWt&bl<~fqhLh6!5{t9n zKq~`(&R+(O%g&|o$--9BT7V$76oU5&8oGKm5=Ssa0wDnUy^Jjfz)7U!dYLkL3clxG zS7~Kqn-jj(y}|PD@R|AoAY5APyZx_qbnAOFy$hYZ4(p;-m0F8oOW6+Xg=FkwMiNFa zL;@fiUf_+ipiGypI|>6KBc(g#JnHv@faU~$==N*MA#4wn0w7j$v%qG9H~$S9Dvr6C zJ*T3jSTKfOqvA>6k=Z`a-31ayFhv3(0K76OCXH?Nn~mc8M^d^TynN2wn)7kw4}_d^~2b+z%&dRgboV(1`_xN3atjS zBTN+oX=+K;XeYi@ZhEqEWR7R)vvPxAbFY7)Jpw+AOukp>SowjYE!?FJ`5N^MTQ+31G=wzxlXb$F%lgkLGUO>R!E)x)^Ry;pQpquq-a{gF~Q zcjI*P^u5iTVzI8JvA#1hckWJgO0&)C&Je0D(wpxTA#{2=BiC^t{xyw}>nt0WGzX&; z8^@vxyEi6kGfT->_366G1-Nni6pstrvIK<(xS$sa_as zcK(&bDn+HmWkQE1JDJYpU30YX;AX}kKX68qRJBV=+qOFjbZYJ~+Hxv*(mZ*nl~Xh2UoNQMlX049e%L2gRzu4* zTWnsoIDdO?ajR;T?t>gA1);uJ&bNwe^|IZ|K5i8~;Tzs=6WTDTYmt=wJmbv9-ygXe z*twX1IrQh|1^$xEsVk4KQ1vR6`8us2TXD(Gt2?6BY;*GIx&8-gU(1S{;d%d#2K-g| zeD~0YX}k3c1Qv=)+r0Xdv*=M}qjE8mf{|dxrn8OlD>h9@-#vFuZSLd9|ICM8^M^&Z P&F2(+bngro0~Z4TRd2f0 diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block index f9a05916e41dfde95c6f9acda96a095dd5f95940..cfbf91a8c93ce431e4fec52ccc186eb674203da0 100644 GIT binary patch delta 1041 zcmV+s1n&EwrU9L%0bvS82nP}%nt0%!LIGu*M9tHs{Ob4eUsi6FJMzC+gyHk0q7}ta z8X!~NQk&MQe(^ui8?SOCzPbKz=23qzdN`R$gI&pc`3w@umjMdKmjMd-mH`UQ1_~Pp z0U8Dfr@FkcVJia~rJxbr3%E>vf)pOL7l{q^_7J%xy1I~s5~Z`I1JenUuMKIFcnvlI zDw97BkCPw{CX1`3nPBr%h9FC~+SBtWzKB#Y14kwceF)WkfFesBYF)ovEFiVp{ z4(PX>M~8@-qsjGYa1Z3L6Ll8U_fby1bEL6tn*^DFYgX-m)Yv1nZgd zb^eDHcCIpV{GE6zvdGsG!jnQZnX_LS1`3nPBr%h9FC~+SBtVn)npC{5=JmY0w8Rp?*kC#txOM9rwXi31q$fWF2hYQN{cLZWt&bl<~fqhLh6!5{t9n zKq~`(&R+(O%g&|o$--9BT7V$76oU5&8oGKm5=Ssa0wDnUy^Jjfz)7U!dYLkL3clxG zS7~Kqn-jj(y}|PD@R|AoAY5APyZx_qbnAOFy$hYZ4(p;-m0F8oOW6+Xg=FkwMiNFa zL;@fiUf_+ipiGypI|>6KBc(g#JnHv@faU~$==N*MA#4wn0w7j$v%qG9H~$S9Dvr6C zJ*T3jSTKfOqvA>6k=Z`a-31ayFhv3(0K76OCXH?Nn~mc8M^d^TynN2wn)7kw4}_d^~2b+z%&dRgboV(1`_xN3atjS zBTN+oX=+K;XeYi@ZhEqEWR7R)vvPxAbFY7)Jpw+AOukp>SowjYE!?FJ`5N^MTQ+31G=wzxlXb$F%lgkLGUO>R!E)x)^Ry;pQpquq-a{gF~Q zcjI*P^u5iTVzI8JvA#1hckWJgO0&)C&Je0D(wpxTA#{2=BiC^t{xyw}>nt0WGzX&; z8^@vxyEi6kGfT->_366G1-Nni6pstrvIK<(xS$sa_as zcK(&bDn+HmWkQE1JDJYpU30YX;AX}kKX68qRJBV=+qOFjbZYJ~+Hxv*(mZ*nl~Xh2UoNQMlX049e%L2gRzu4* zTWnsoIDdO?ajR;T?t>gA1);uJ&bNwe^|IZ|K5i8~;Tzs=6WTDTYmt=wJmbv9-ygXe z*twX1IrQh|1^$xEsVk4KQ1vR6`8us2TXD(Gt2?6BY;*GIx&8-gU(1S{;d%d#2K-g| zeD~0YX}k3c1Qv=)+r0Xdv*=M}qjE8mf{|dxrn8OlD>h9@-#vFuZSLd9|ICM8^M^&Z P&F2(+bngro0~Z4TRd2f0 diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json index 10d6677a..9341ef22 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json @@ -698,13 +698,13 @@ }, "signatures": [ { - "signature": "MEQCIHwIp2guw9a2SGenaYJWx4LR1be3RLhAY7Qn4rRIyg1lAiATSSj6kSa9lcAImM2WOVKXwtLr9TX73vMDOf2oruE0Ow==", + "signature": "MEUCIQDJ/PJG5coifK0MyZomxvdZOPc+UoDL+DrOLGR6ShgGdgIgMp/p3sXXIDwY9dnvn66fL1FixnJi5YZVcmNGOGWRx2A=", "signature_header": { "creator": { "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRWGFsZS9zSnJHUnlVQVc3dmQ4eWhHakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TWprd05qSTJNemxhRncweU56RXlNamN3TmpJMk16bGEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFNE5aaE5Bek9ReUlweXZnQnNWeDRMN2NreHYrSCtERGwKM2lTNGF2ekJ3czFWeXRjWXBtVVFNN2g3R3Z0VDJjOGJtTjFQZFBqbEdCWnJ2cEdHb2ZTeDJLTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1pVVXZjUi9CWVZGCm1DMmdxS1FBWi93QTBpM3NXSkZvY3BpeEtJQ00rMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQU1DdjNNME8KQXFIOUJkdlVjYlRXd3BOM09PcGcrKzJETTAxRFY0b1UyRkhNQWlBMk9iL0pLTnl2YS9meFJQRnEyOWkrNVphTApSMEw1SnI4ODc4YkxVNkljRUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "KFIN9pfh/D2qrHkq+b31h/kgw1H2ipBs" + "nonce": "uFcUC8UcXpNuUO6lljTHKn1K1NpjmN/O" } } ] @@ -713,7 +713,7 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2018-01-05T02:50:27.000Z", + "timestamp": "2018-01-05T06:36:30.000Z", "tx_id": "", "type": 2, "version": 0 @@ -723,18 +723,18 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRWGFsZS9zSnJHUnlVQVc3dmQ4eWhHakFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV5TWprd05qSTJNemxhRncweU56RXlNamN3TmpJMk16bGEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFNE5aaE5Bek9ReUlweXZnQnNWeDRMN2NreHYrSCtERGwKM2lTNGF2ekJ3czFWeXRjWXBtVVFNN2g3R3Z0VDJjOGJtTjFQZFBqbEdCWnJ2cEdHb2ZTeDJLTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnK1pVVXZjUi9CWVZGCm1DMmdxS1FBWi93QTBpM3NXSkZvY3BpeEtJQ00rMVl3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQU1DdjNNME8KQXFIOUJkdlVjYlRXd3BOM09PcGcrKzJETTAxRFY0b1UyRkhNQWlBMk9iL0pLTnl2YS9meFJQRnEyOWkrNVphTApSMEw1SnI4ODc4YkxVNkljRUE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "VZpFerjp7rc1wwjkc54kQcMORD2dthzq" + "nonce": "8jn6u8Ccuswbf3vIsdm/LFNqCsxUcv6F" } } }, - "signature": "MEQCIHswHsx24JeGCpAptKdFHapoiBnQLnuiVpwk6fTS+6IzAiAfWsvy0Ccyji8Wg3yx8BbM0xcb/Lr7rkJYd3Xq2v4lvA==" + "signature": "MEQCIH0YvyTo+CqRgciMU6SiIcTyw4I3psnLrWMZVsKPPFv7AiAc3ZoyL4+KQ5FjKr5vsR+l6SxmpQ5qvCKqCJ7MDUHStA==" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2018-01-05T02:50:27.000Z", + "timestamp": "2018-01-05T06:36:30.000Z", "tx_id": "", "type": 1, "version": 0 @@ -744,23 +744,23 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJPZ0F3SUJBZ0lSQU8zb3g2UGwva1N2d2ZnT25YVUxBQzh3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhOekV5TWprd05qSTJNemxhRncweU56RXlNamN3TmpJMk16bGFNRmd4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVJ3d0dnWURWUVFERXhOdmNtUmxjbVZ5TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJCktvWkl6ajBEQVFjRFFnQUVtM0ZzdE15T0xCUmwrWDFSVGtJaFhDdHF4VU1vckdPblBsT0FVRFhiK3d6VmNKalIKb3lCZjY4Q25yMFVtWGJzTFRiU0doNnlJZzRsQ3NrcFNwKzF5UktOTk1Fc3dEZ1lEVlIwUEFRSC9CQVFEQWdlQQpNQXdHQTFVZEV3RUIvd1FDTUFBd0t3WURWUjBqQkNRd0lvQWc3ZTQ2aUh6eTgzNURGNlo2MktkbG5DbHFSRkFZClY5cDc4WmxrRmtJd3Bpc3dDZ1lJS29aSXpqMEVBd0lEUndBd1JBSWdLNS9tSHJkcGRqY21tSGV0cW9sWGZvcTMKU09FcTFDTmdHVDF0ZHBLMlozc0NJQ0I3OEUzeXVpVXBtaWVsVnhlc1hMOGo5b0RiK0xLK3NHYWkvRzUyT2U1WAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "LbUDdDZncSEmg8IaKsceP8tYkcxwRF9D" + "nonce": "9TeXlpYDlodfd+HGxdYSLhjwXEHTML8p" } } }, - "signature": "MEUCIQD1Leob7f/Tm+UhWaWga5++yFYar1NPLLZgR49cqbKwbQIgAZ2u3NOl3Tusve7JlB+yvIbxkscYiBWehXnhvr9kk58=" + "signature": "MEQCICOAf/sDK4B3upuec5ny0khKUaEAbxNS/4l6vbNd0jy3AiBCZI8KE6+cc3B+Jgx0CcNGGLnw2V6v+AEiopl0y/NNVA==" } ] }, "header": { - "data_hash": "PFXmQJonWaN2XKT3gSbsKPW0EboiDPTbr867K9E2jF8=", + "data_hash": "odmOEv05/T2C6GmKC2vsh5bkueAH5/q/PVucn8iUc6A=", "number": "2", - "previous_hash": "bjZey0pUuU/2DNrJQ9URib2dNHY9WxWL3LSrMVdIrpQ=" + "previous_hash": "ZERGtQYOmHA0pvWOz4QJM5AYnEkaZg/jt5gzIHQ7120=" }, "metadata": { "metadata": [ - "EvkGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJPZ0F3SUJBZ0lSQU8zb3g2UGwva1N2d2ZnT25YVUxBQzh3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhOekV5TWprd05qSTJNemxhRncweU56RXlNamN3TmpJMk16bGFNRmd4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVJ3d0dnWURWUVFERXhOdmNtUmxjbVZ5TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJCktvWkl6ajBEQVFjRFFnQUVtM0ZzdE15T0xCUmwrWDFSVGtJaFhDdHF4VU1vckdPblBsT0FVRFhiK3d6VmNKalIKb3lCZjY4Q25yMFVtWGJzTFRiU0doNnlJZzRsQ3NrcFNwKzF5UktOTk1Fc3dEZ1lEVlIwUEFRSC9CQVFEQWdlQQpNQXdHQTFVZEV3RUIvd1FDTUFBd0t3WURWUjBqQkNRd0lvQWc3ZTQ2aUh6eTgzNURGNlo2MktkbG5DbHFSRkFZClY5cDc4WmxrRmtJd3Bpc3dDZ1lJS29aSXpqMEVBd0lEUndBd1JBSWdLNS9tSHJkcGRqY21tSGV0cW9sWGZvcTMKU09FcTFDTmdHVDF0ZHBLMlozc0NJQ0I3OEUzeXVpVXBtaWVsVnhlc1hMOGo5b0RiK0xLK3NHYWkvRzUyT2U1WAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYVJDDNMg85guEVAwtftJrqT0NIR7XiCejEkcwRQIhAI0iwvwwj0mOdCB7J+CFI01rVbxSP/aaqJ2KfY+h8jfrAiAtg/Kv53UHQyF7jtJA4Jh+lqjv9i+k+qLl9qiWrcGsUw==", - "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiT2dBd0lCQWdJUkFPM294NlBsL2tTdndmZ09uWFVMQUM4d0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFeU1qa3dOakkyTXpsYUZ3MHlOekV5TWpjd05qSTJNemxhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFbTNGc3RNeU9MQlJsK1gxUlRrSWhYQ3RxeFVNb3JHT25QbE9BVURYYit3elZjSmpSCm95QmY2OENucjBVbVhic0xUYlNHaDZ5SWc0bENza3BTcCsxeVJLTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnN2U0NmlIenk4MzVERjZaNjJLZGxuQ2xxUkZBWQpWOXA3OFpsa0ZrSXdwaXN3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnSzUvbUhyZHBkamNtbUhldHFvbFhmb3EzClNPRXExQ05nR1QxdGRwSzJaM3NDSUNCNzhFM3l1aVVwbWllbFZ4ZXNYTDhqOW9EYitMSytzR2FpL0c1Mk9lNVgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGMvkI1Nb8JuuhUUCUlYGkdtEqn5b+pw2FhJGMEQCIAWGbXLc2qsu6IKC9qgOYGzIcRSrcTBjTTsmRj1HyTjVAiA96pCtrVCr+8baQgd9IVNPRkKPy/TOmJsoM2mFvDmMhA==", + "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNERENDQWJPZ0F3SUJBZ0lSQU8zb3g2UGwva1N2d2ZnT25YVUxBQzh3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhOekV5TWprd05qSTJNemxhRncweU56RXlNamN3TmpJMk16bGFNRmd4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVJ3d0dnWURWUVFERXhOdmNtUmxjbVZ5TG1WNFlXMXdiR1V1WTI5dE1Ga3dFd1lIS29aSXpqMENBUVlJCktvWkl6ajBEQVFjRFFnQUVtM0ZzdE15T0xCUmwrWDFSVGtJaFhDdHF4VU1vckdPblBsT0FVRFhiK3d6VmNKalIKb3lCZjY4Q25yMFVtWGJzTFRiU0doNnlJZzRsQ3NrcFNwKzF5UktOTk1Fc3dEZ1lEVlIwUEFRSC9CQVFEQWdlQQpNQXdHQTFVZEV3RUIvd1FDTUFBd0t3WURWUjBqQkNRd0lvQWc3ZTQ2aUh6eTgzNURGNlo2MktkbG5DbHFSRkFZClY5cDc4WmxrRmtJd3Bpc3dDZ1lJS29aSXpqMEVBd0lEUndBd1JBSWdLNS9tSHJkcGRqY21tSGV0cW9sWGZvcTMKU09FcTFDTmdHVDF0ZHBLMlozc0NJQ0I3OEUzeXVpVXBtaWVsVnhlc1hMOGo5b0RiK0xLK3NHYWkvRzUyT2U1WAotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYt0MLNFJZzwYyCh+J3WTh7orO0wDR/dNrEkYwRAIgBJIEnA2SUpYsw2+nSBBDVSsYVaGpUQGpSwDNQcrLef0CIFNHIOgdh8RWNl9P/7exTllF9ei3nvMfyJjyODgcZEfE", + "CgIIAhL5BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDRERDQ0FiT2dBd0lCQWdJUkFPM294NlBsL2tTdndmZ09uWFVMQUM4d0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFeU1qa3dOakkyTXpsYUZ3MHlOekV5TWpjd05qSTJNemxhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFbTNGc3RNeU9MQlJsK1gxUlRrSWhYQ3RxeFVNb3JHT25QbE9BVURYYit3elZjSmpSCm95QmY2OENucjBVbVhic0xUYlNHaDZ5SWc0bENza3BTcCsxeVJLTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnN2U0NmlIenk4MzVERjZaNjJLZGxuQ2xxUkZBWQpWOXA3OFpsa0ZrSXdwaXN3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnSzUvbUhyZHBkamNtbUhldHFvbFhmb3EzClNPRXExQ05nR1QxdGRwSzJaM3NDSUNCNzhFM3l1aVVwbWllbFZ4ZXNYTDhqOW9EYitMSytzR2FpL0c1Mk9lNVgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGAv9Y+9pB2HYf7lRSgwo1yyx90XPZjWoABJHMEUCIQCuYJfq/st7AKIroj+XoTR5wr1Vc2ft4pQ2OFFvcHzITgIgettMSWfkUU9ENxecKGmmDWjIuagxZ/OX4N6bUj+4fSg=", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb index b620a68a8e32c4bd2e0db5718057726e511fafd5..6f863a3c47c453cfd1e0c5f6e98ca539b7aa67d4 100644 GIT binary patch delta 31 ncmbO(K3#mnY_7@YxRNK&;xgvYVslK%&CDyFs1`Q4pPK^!wrvW) delta 51 zcmbO(K3#mnY_7@wxr`>y;!2U%VslK%&CDwn;^kuZFG@G`4Gs`u;$VbwjV1?hy8{5D Cq7EAX diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb index 5ff5581220ffb44b3059794f9b4b6ef3c3b49ba9..8e30c8b75f2e7ecb8287abb26a5d2b7ce599073f 100644 GIT binary patch delta 357 zcmV-r0h<2iEafZ^3Yjbl-v$aB2m%@g2&cNdu@F528lOvp45M+6oVO?c zo<1h3%LLVA4ha%QFhl|%Y^3i45az8+4^^iMtWO2YG_+Eb2F0dxmo@S2KNZ370w4gq zIg~~X#0bCix~T37_INW6mFi*_2U{*_ai)cc`)d-4vyl=j1AnpkM`uQi7Cvr;*TOc% zR5hJ50frY~E4D`~hwlC?S;bzL|!T()$ueFhv3(0HF+O3d8OX%eETMKmN$tt8pQrGT3& zTyqYa8Ah!FAWA#r0EZ#FXqQqS{zZwOMa0dV(*OWPR$L|fgCxEaGZKrlkrFEdf97Ri ziiCRlBToaEEQEePxitEh4oSX{LXe^dYrW^;Qx`Fhv3(0I&oj zOf1ierwXH=vD_#kA>qhz?T~H+E1#t5ncr0d3*-VIA68{^zvVZ?MAg`b4n>kXOfPjS P%@u>&zujc4b&nUnNiml$ 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 645a6550bd0e64893784fd3181182652d982cfa5..4de6263275e3b4310c75d49fc03d19d206422ec5 100644 GIT binary patch delta 70 zcmX@V`7U!Al2&9jSIczo;_u<~S@g(Qu4P2R%E4j=VwI8?p!x&`% delta 68 zcmV-K0K5OmN6AN!va`k($O)79AT^VXAZh_Bler-(lQkiWlUE`nlj9+D2r33aWNm3~ abFr~93X>HJWRvI>CbMk|SPQd*B1Qqut{Lh8 diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb index 66973b848eb1c030f0319d36c8544e1a254baf67..4eca1b11ab21d017e4413b8026bd39412517f65a 100644 GIT binary patch delta 116 zcmV-)0E_>KM~Fv|8xYtP3I|VeXEIGwP!h})2m!M~3-bw+A_^drDhn8sS_&nTj1@qW zH5D?G%oPZ+8bJz^HWeiSF_T;sFq3}@K(ovh2Md!KA!n1)AV!loBS@3TAz71@B7l=1 WB6E|ZAtjR)BS#1-20>(PX>M~9U?ejD delta 115 zcmeBh?{J?Wz4;rL1J~pX(Ui%%xzr{f5ET&=x*^KN?q8H{wS$OiX3+62;odiMvr*c?-GGxLf8$?AH8jwH+sG(&iImoi%Yqv(end0kl>&io#?syrM=(VK zApqfa`I{3ze{~OQzxt{G<{vdpG^=%0T5C|VIbUPN9#{e(LQOi?>V{6T!`DV{HYMs6 z$|EUo!rf|PN$;1x>Vme%5=Ssa0wDmpWi-U_NJh@J>NC^zHd;sx!j#Q|ctXRM=#A}3 zNk=9U0w7_Ci309UvuljM)a7UEf{#N(=>GAVKYJ<4hs7Q68HuRv2GUw zXYxRX=gZ*hkRAlEE!-HRz*adDeK0&{`w~VlL;@fr?|xZ&LI}gHu*XX^$QCs~JOspr zuIQ?2?w2QPHz*APAR?ZOC4u$vPV-L4o2dU%#C@xOy=%RI{V&R^0@e`zJaGirIub`PMFJrJsO)Ez4rlHw<{qUvQEYWQ zt-#sXNSH)gy?n_bli7~C0w4o(PAcV?_MOe5a1BMC{?sfg)d&2nwf75LXx5yH-O>sG F3IMgMW#9k+ delta 838 zcmbPHGP7iYhM5F;@e>EST_p?eAUt!mqx49V)aYj_YA8 z*I70$X%0q+`pp}dwV9Z+3sWbGzb0O>z6e4F!Rk8w?|(NF}c2$(Fd zSv7g7hWg|m8XA+&XlMgt?k;AzFc&3dvfLKg@%ohr)!uL z0@vv&%;Vn4Z(6v_u=4$dEq%9(7MT9)e=_f+Xw8XhMSf6&{wBSXyDQzLdE?My-P3Eg z@Us*r9sYmhe7(=}XBICmbMrrDQV>0G)*_wrm2F{D{8?5<(+`UR*S=Rg(xBvc_U+fa zzdXBz+zecp6cqok&Q<-z_jdW4ZMb^VLh&E7%fY%cEfdywf`0G zy?*0f<@Bri^WE&744ro-i9P?Atm^%r+ixGloa)n_F@M&%eR){tYQC@i`e(J~OWF`fft9nu{&)1wia=-GHPWq`Y1(w`%#kRcZ`T1>H z+{RjAE+orRx18{MsB*4ATbXmdC)56!O}`Ajvi7%d&460=b@I-=mzuHu3nQZ0U|_m~vK_qj+XX6jx4c4cNfN8{`5KZ8YewO@1iseFC;|M%1d J2e}xy7yxAdcenrm diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb index c53696f4a5bc039213020e99239091e04403d49c..e5da744d8db4514653a20260bbe1043f83baf563 100644 GIT binary patch delta 109 zcmV-z0FwW$T&-M?EU{$v36U!}lQk730Wp#wGn0S{K9kH93A6eN;S`fw3MG>>AU=~d z6(y7Z9}bgoASIK!AVrgzEG)AJAw;)K9xh*A= PCM+wH{~!pn#Vlw6x|t}r delta 104 zcmV-u0GI!*T&-M?ERzchACp1~7_lq&36t6%CX=%YK9e;SC6j*&4zuwJ>J*bU6(j*O zlYj~{k{~{l%oPZec_1B=ye)CF2O-P}lRhgklg}z^0V DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -orderer.example.com | [002 01-05 02:50:21.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -orderer.example.com | [003 01-05 02:50:21.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -orderer.example.com | [004 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -orderer.example.com | [005 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -orderer.example.com | [006 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -orderer.example.com | [007 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -orderer.example.com | [008 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -orderer.example.com | [009 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -orderer.example.com | [00a 01-05 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -orderer.example.com | [00b 01-05 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -orderer.example.com | [00c 01-05 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -orderer.example.com | [00d 01-05 02:50:21.80 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 02:50:21.80 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 02:50:21.80 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 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [011 01-05 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [012 01-05 02:50:21.80 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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [013 01-05 02:50:21.80 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 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [014 01-05 02:50:21.80 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 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [015 01-05 02:50:21.80 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 | [016 01-05 02:50:21.81 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 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [017 01-05 02:50:21.81 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 02:50:21.81 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 02:50:21.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -orderer.example.com | [01a 01-05 02:50:21.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -orderer.example.com | [01b 01-05 02:50:21.82 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -orderer.example.com | [01c 01-05 02:50:21.82 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 02:50:21.82 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 | [01e 01-05 02:50:21.82 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 | [01f 01-05 02:50:21.82 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 02:50:21.82 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 | [021 01-05 02:50:21.82 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 | [022 01-05 02:50:21.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -orderer.example.com | [023 01-05 02:50:21.82 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 02:50:21.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -orderer.example.com | [025 01-05 02:50:21.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | [026 01-05 02:50:21.82 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 02:50:21.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -orderer.example.com | [028 01-05 02:50:21.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4202764a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | [029 01-05 02:50:21.83 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 | [02a 01-05 02:50:21.83 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 -orderer.example.com | ] -orderer.example.com | [02b 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 | [02e 01-05 02:50:21.83 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 | [02f 01-05 02:50:21.83 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 | [030 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 | [034 01-05 02:50:21.83 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 02:50:21.83 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 | [036 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [037 01-05 02:50:21.83 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 | [038 01-05 02:50:21.83 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 | [039 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [03d 01-05 02:50:21.83 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 | [03e 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [03f 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [040 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [043 01-05 02:50:21.83 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 | [044 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 | [047 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [048 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [049 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [04a 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [001 01-05 02:50:19.60 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 02:50:19.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | Version: 1.1.0 -peer0.org1.example.com | [001 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -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 -peer0.org1.example.com | [002 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | -peer0.org1.example.com | Version: 1.1.0 -peer1.org1.example.com | [003 01-05 02:50:19.60 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 | Go version: go1.9.2 -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [004 01-05 02:50:19.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org1.example.com | OS/Arch: linux/amd64 -peer1.org1.example.com | [005 01-05 02:50:19.61 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 | Experimental features: false -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer1.org1.example.com | [006 01-05 02:50:19.61 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 | Chaincode: -peer1.org1.example.com | [007 01-05 02:50:19.61 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 | Base Image Version: 0.4.2 -peer1.org1.example.com | [008 01-05 02:50:19.61 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/] -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -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 02:50:20.30 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 02:50:20.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org1.example.com | [005 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer0.org1.example.com | [006 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer0.org1.example.com | [007 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer0.org1.example.com | [008 01-05 02:50:20.31 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 02:50:20.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org1.example.com | [009 01-05 02:50:19.61 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 02:50:19.61 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 02:50:19.62 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 02:50:19.62 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 02:50:19.62 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 02:50:19.63 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 02:50:19.63 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 02:50:19.63 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 02:50:19.63 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 02:50:19.64 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 | [00a 01-05 02:50:20.31 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 02:50:20.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer0.org1.example.com | [00c 01-05 02:50:20.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer0.org1.example.com | [00d 01-05 02:50:20.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer0.org1.example.com | [00e 01-05 02:50:20.33 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 02:50:20.33 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 02:50:20.33 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 02:50:20.33 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 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer0.org1.example.com | [013 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer0.org1.example.com | [014 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer0.org1.example.com | [015 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer0.org1.example.com | [016 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer0.org1.example.com | [017 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer0.org1.example.com | [018 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer0.org1.example.com | [019 01-05 02:50:20.34 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 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 -peer0.org1.example.com | [01b 01-05 02:50:20.34 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 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 -peer0.org1.example.com | [01d 01-05 02:50:20.34 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 02:50:20.35 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 02:50:20.36 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 02:50:20.36 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 02:50:20.36 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 | [013 01-05 02:50:19.64 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org1.example.com | [022 01-05 02:50:20.36 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 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer1.org1.example.com | [014 01-05 02:50:19.64 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 | [024 01-05 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [025 01-05 02:50:20.36 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 02:50:20.36 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 | [015 01-05 02:50:19.64 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 02:50:19.68 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 | [02a 01-05 02:50:20.38 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 02:50:20.38 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 02:50:20.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 -peer0.org1.example.com | [02d 01-05 02:50:20.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.org1.example.com | [02e 01-05 02:50:20.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.org1.example.com | [02f 01-05 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 | [017 01-05 02:50:19.68 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 | [032 01-05 02:50:20.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [04b 01-05 02:50:21.83 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 | [04c 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos -peer1.org1.example.com | [018 01-05 02:50:19.68 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 02:50:19.68 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 02:50:19.68 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.3:7051 -peer1.org1.example.com | [01b 01-05 02:50:19.68 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 02:50:19.68 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.3:7051 -peer1.org1.example.com | [01d 01-05 02:50:19.68 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 02:50:19.70 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 02:50:19.72 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 02:50:19.72 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 02:50:19.72 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 02:50:19.72 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 02:50:19.72 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 | [033 01-05 02:50:20.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -orderer.example.com | [04d 01-05 02:50:21.83 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.org1.example.com | [024 01-05 02:50:19.72 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [034 01-05 02:50:20.38 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 02:50:20.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -orderer.example.com | [04e 01-05 02:50:21.83 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.org1.example.com | [025 01-05 02:50:19.72 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com -peer0.org1.example.com | [036 01-05 02:50:20.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc,true) disabled -orderer.example.com | [04f 01-05 02:50:21.83 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.org1.example.com | [026 01-05 02:50:19.72 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 | [037 01-05 02:50:20.38 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 02:50:20.38 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [039 01-05 02:50:20.38 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 | [027 01-05 02:50:19.74 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org1.example.com as a hostname, adding it as a DNS SAN -peer0.org1.example.com | [03a 01-05 02:50:20.38 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 | [028 01-05 02:50:19.74 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -orderer.example.com | [050 01-05 02:50:21.83 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 | [03b 01-05 02:50:20.38 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 | [029 01-05 02:50:19.75 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 | [051 01-05 02:50:21.83 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 | [03c 01-05 02:50:20.38 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 | [02a 01-05 02:50:19.75 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -orderer.example.com | [052 01-05 02:50:21.83 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.org1.example.com | [03d 01-05 02:50:20.38 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 | [02b 01-05 02:50:19.76 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 | [03e 01-05 02:50:20.38 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer1.org1.example.com | [02c 01-05 02:50:19.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org1.example.com | [02d 01-05 02:50:19.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -orderer.example.com | [053 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [03f 01-05 02:50:20.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [02e 01-05 02:50:19.76 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 | [040 01-05 02:50:20.38 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-05 02:50:20.39 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -peer0.org1.example.com | [042 01-05 02:50:20.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [043 01-05 02:50:20.40 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 | [02f 01-05 02:50:19.76 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 -orderer.example.com | [054 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [030 01-05 02:50:19.76 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 02:50:19.76 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 | [044 01-05 02:50:20.40 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 -peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw -peer0.org1.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD -peer0.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 -peer0.org1.example.com | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF -peer0.org1.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk -peer0.org1.example.com | oOWGb8BDg2Tnm3LS -peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [045 01-05 02:50:20.40 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 | [046 01-05 02:50:20.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [047 01-05 02:50:20.40 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [048 01-05 02:50:20.40 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 | [032 01-05 02:50:19.77 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 02:50:19.77 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 02:50:19.77 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 02:50:19.77 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 | [049 01-05 02:50:20.40 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-05 02:50:20.40 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 | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [036 01-05 02:50:19.77 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 02:50:19.77 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 02:50:19.77 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | [039 01-05 02:50:19.77 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 | [04b 01-05 02:50:20.40 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 1515120620407418800 -peer0.org1.example.com | [04c 01-05 02:50:20.40 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 02:50:20.40 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 | [04e 01-05 02:50:20.40 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 | [03a 01-05 02:50:19.77 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 02:50:19.77 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 02:50:19.77 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 02:50:19.77 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 | [04f 01-05 02:50:20.40 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 | 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 -peer0.org1.example.com | [050 01-05 02:50:20.40 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 | [03e 01-05 02:50:19.77 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -orderer.example.com | vA2BLfriqQ== -peer0.org1.example.com | [051 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [03f 01-05 02:50:19.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [052 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -orderer.example.com | [055 01-05 02:50:21.83 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 | [053 01-05 02:50:20.41 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 | [040 01-05 02:50:19.77 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-05 02:50:19.79 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] -peer0.org1.example.com | [054 01-05 02:50:20.41 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 | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [055 01-05 02:50:20.41 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 | [042 01-05 02:50:19.80 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [056 01-05 02:50:20.41 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.org1.example.com | [043 01-05 02:50:19.80 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 02:50:19.80 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 -peer0.org1.example.com | [057 01-05 02:50:20.41 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 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [058 01-05 02:50:20.41 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=e516fdc0-aa9a-4381-803d-e06018cda404,syscc=true,proposal=0x0,canname=cscc:1.1.0 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org1.example.com | [059 01-05 02:50:20.41 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [05a 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABFrEWeTrn3TfWYYM+62OyFTECgSjLyaT -peer0.org1.example.com | [05b 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [05c 01-05 02:50:20.41 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 | GqQq/wBR1t28C1sN2jzZA0Z8CC6UBxPnAU5/aHoJRM86OJM2kjIK5u+jTTBLMA4G -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [05d 01-05 02:50:20.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] -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org1.example.com | [05e 01-05 02:50:20.41 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org1.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDVXd+d -peer1.org1.example.com | hda/sjnux8Hg361l9wkEXBVmH8iO0usHjqvAOgIgBjqzYUxBWSyaZ1+LwXFVWYtM -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org1.example.com | [05f 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org1.example.com | ZRKeLT+EkdbmTk6JlSM= -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org1.example.com | [060 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer1.org1.example.com | [045 01-05 02:50:19.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [046 01-05 02:50:19.81 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 | [056 01-05 02:50:21.83 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | [047 01-05 02:50:19.81 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 02:50:19.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [057 01-05 02:50:21.83 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 | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | [049 01-05 02:50:19.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [058 01-05 02:50:21.83 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 | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | [059 01-05 02:50:21.83 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 | [05a 01-05 02:50:21.83 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 | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [04a 01-05 02:50:19.81 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 | [05b 01-05 02:50:21.83 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.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [04b 01-05 02:50:19.81 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 1515120619814629500 -orderer.example.com | [05c 01-05 02:50:21.83 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 | 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 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer0.org1.example.com | [062 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer0.org1.example.com | [063 01-05 02:50:20.41 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 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer0.org1.example.com | [065 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -peer0.org1.example.com | [066 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [067 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer0.org1.example.com | [068 01-05 02:50:20.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 | [069 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [06a 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [06b 01-05 02:50:20.41 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 | [06d 01-05 02:50:20.41 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 | [04c 01-05 02:50:19.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 | [05d 01-05 02:50:21.83 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 | [06e 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -peer1.org1.example.com | [04d 01-05 02:50:19.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 -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [06f 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 038B407E00A0F5300D9ED26D0086ABAE15137F3883C723F841D4C88AD382B9B7 -peer0.org1.example.com | [070 01-05 02:50:20.41 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 | [071 01-05 02:50:20.41 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 | [04e 01-05 02:50:19.81 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 | [04f 01-05 02:50:19.81 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 | 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----- -peer0.org1.example.com | [072 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -peer0.org1.example.com | [073 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -peer0.org1.example.com | [06c 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer0.org1.example.com | [074 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [075 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer0.org1.example.com | [076 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [077 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [050 01-05 02:50:19.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -orderer.example.com | [05e 01-05 02:50:21.83 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 -peer0.org1.example.com | [078 01-05 02:50:20.41 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 | [051 01-05 02:50:19.81 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [079 01-05 02:50:20.41 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 | [052 01-05 02:50:19.82 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 | [053 01-05 02:50:19.82 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [07a 01-05 02:50:20.41 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 | [054 01-05 02:50:19.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [07b 01-05 02:50:20.41 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 | [055 01-05 02:50:19.82 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 01-05 02:50:19.82 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 | [057 01-05 02:50:19.82 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.org1.example.com | [07c 01-05 02:50:20.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 | [07d 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [058 01-05 02:50:19.82 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.org1.example.com | [07e 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [07f 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [080 01-05 02:50:20.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 cscc:1.1.0 launch seq completed -peer1.org1.example.com | [059 01-05 02:50:19.82 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=4bb66a04-a173-4557-9bb3-49c73f90d943,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org1.example.com | [05c 01-05 02:50:19.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.1.0 is being launched -peer1.org1.example.com | [05e 01-05 02:50:19.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [05d 01-05 02:50:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org1.example.com | [060 01-05 02:50:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer0.org1.example.com | [081 01-05 02:50:20.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 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [082 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [05a 01-05 02:50:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [05b 01-05 02:50:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [083 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]Move state message READY -peer0.org1.example.com | [084 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [05f 01-05 02:50:19.83 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [061 01-05 02:50:19.86 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 | [063 01-05 02:50:19.86 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 | [085 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e516fdc0]Entered state ready -peer0.org1.example.com | [086 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e516fdc0-aa9a-4381-803d-e06018cda404, channelID: -peer0.org1.example.com | [087 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]sending state message READY -peer0.org1.example.com | [088 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Received message READY from shim -peer0.org1.example.com | [089 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e516fdc0]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [064 01-05 02:50:19.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A -peer1.org1.example.com | [065 01-05 02:50:19.87 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5FC32CC32B2FDA40ECF984E7FC5D85B17C7C0172D1F9853D238EE24250407530 -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 | [05f 01-05 02:50:21.84 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 | [060 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [061 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [08a 01-05 02:50:20.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 -peer0.org1.example.com | [08b 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [08c 01-05 02:50:20.41 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 | [066 01-05 02:50:19.87 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 | [067 01-05 02:50:19.87 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 | [068 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -peer1.org1.example.com | [069 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer1.org1.example.com | [062 01-05 02:50:19.86 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=cscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org1.example.com | [08d 01-05 02:50:20.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: cscc:1.1.0 -orderer.example.com | [062 01-05 02:50:21.84 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 -peer1.org1.example.com | [06a 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -orderer.example.com | [063 01-05 02:50:21.84 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 | [08e 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e516fdc0]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [08f 01-05 02:50:20.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... -peer0.org1.example.com | [090 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e516fdc0]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [06b 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [06c 01-05 02:50:19.88 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 | [091 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]Move state message INIT -orderer.example.com | [064 01-05 02:50:21.84 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 | [06d 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | [092 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [093 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [065 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP -orderer.example.com | [066 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [094 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]sending state message INIT -peer0.org1.example.com | [095 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Received message INIT from shim -peer0.org1.example.com | [096 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e516fdc0]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [097 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [098 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e516fdc0]Received INIT, initializing chaincode -peer0.org1.example.com | [099 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [09a 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | [09b 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Init get response status: 200 -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [09c 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Init succeeded. Sending COMPLETED -orderer.example.com | [067 01-05 02:50:21.84 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 | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [09d 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Move state message COMPLETED -orderer.example.com | [068 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -peer1.org1.example.com | 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 | [06e 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer1.org1.example.com | [06f 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer1.org1.example.com | [070 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -peer1.org1.example.com | [071 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer0.org1.example.com | [09e 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e516fdc0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [069 01-05 02:50:21.84 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 | [072 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer0.org1.example.com | [09f 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]send state message COMPLETED -peer0.org1.example.com | [0a0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]Received message COMPLETED from shim -peer0.org1.example.com | [0a1 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [073 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [074 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer1.org1.example.com | [075 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [076 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer0.org1.example.com | [0a2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0-aa9a-4381-803d-e06018cda404]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0a3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e516fdc0-aa9a-4381-803d-e06018cda404, channelID: -peer1.org1.example.com | [077 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [06a 01-05 02:50:21.84 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 | [0a4 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [078 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0a5 01-05 02:50:20.42 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 | [079 01-05 02:50:19.88 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 | [06b 01-05 02:50:21.84 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 | [0a6 01-05 02:50:20.42 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=b366d7cd-6c86-42c7-8df4-1d82cf62b582,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org1.example.com | [07a 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | [06c 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [06d 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [06e 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [06f 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [070 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [0a7 01-05 02:50:20.42 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 | [0a8 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [0a9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [0aa 01-05 02:50:20.42 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 | [0ab 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [0ac 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org1.example.com | [0ad 01-05 02:50:20.42 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 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [07b 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.1.0 -orderer.example.com | [071 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [07c 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -orderer.example.com | [072 01-05 02:50:21.84 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 | [07d 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | [073 01-05 02:50:21.84 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_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [07e 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [074 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org1.example.com | [07f 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -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 | [075 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [076 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [077 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [0af 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer1.org1.example.com | [080 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [081 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed -peer1.org1.example.com | [082 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [083 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [084 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bb66a04]Move state message READY -peer1.org1.example.com | [085 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4bb66a04]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [086 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4bb66a04]Entered state ready -peer1.org1.example.com | [087 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4bb66a04-a173-4557-9bb3-49c73f90d943, channelID: -peer1.org1.example.com | [088 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bb66a04]sending state message READY -peer1.org1.example.com | [089 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bb66a04]Received message READY from shim -peer1.org1.example.com | [08a 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bb66a04]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [08b 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [08c 01-05 02:50:19.88 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 | [08d 01-05 02:50:19.88 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 | [08e 01-05 02:50:19.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org1.example.com | [090 01-05 02:50:19.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4bb66a04]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [08f 01-05 02:50:19.90 UTC] [github.com/hyperledger/fabric/common/flogging] resetAddrConn.resetTransport.Warningf.Warningf.Printf -> DEBU grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: Error while dialing dial tcp 172.18.0.4:7051: getsockopt: connection refused"; Reconnecting to {peer0.org1.example.com:7051 } -peer1.org1.example.com | [091 01-05 02:50:19.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... -peer1.org1.example.com | [092 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4bb66a04]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [093 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bb66a04]Move state message INIT -peer1.org1.example.com | [094 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4bb66a04]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [0b0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -peer0.org1.example.com | [0b1 01-05 02:50:20.42 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 | [095 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0b2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer0.org1.example.com | [0b4 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer0.org1.example.com | [0b5 01-05 02:50:20.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 | [0b3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer0.org1.example.com | [0b6 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [0b7 01-05 02:50:20.42 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-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0b9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [096 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bb66a04]sending state message INIT -orderer.example.com | [078 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [0ba 01-05 02:50:20.42 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 | [097 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bb66a04]Received message INIT from shim -peer1.org2.example.com | [001 01-05 02:50:21.44 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0bb 01-05 02:50:20.42 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 | [002 01-05 02:50:21.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | Version: 1.1.0 -peer1.org2.example.com | Go version: go1.9.2 -peer1.org2.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | Experimental features: false -peer1.org2.example.com | Chaincode: -peer1.org2.example.com | Base Image Version: 0.4.2 -peer1.org2.example.com | Base Docker Namespace: hyperledger -peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org2.example.com | Docker Namespace: hyperledger -peer1.org2.example.com | -peer1.org2.example.com | [003 01-05 02:50:21.44 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 02:50:21.44 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 02:50:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org2.example.com | [006 01-05 02:50:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org2.example.com | [007 01-05 02:50:21.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org2.example.com | [008 01-05 02:50:21.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [009 01-05 02:50:21.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [00a 01-05 02:50:21.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org2.example.com | [00b 01-05 02:50:21.49 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 02:50:21.49 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 02:50:21.49 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 02:50:21.53 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 02:50:21.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 -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org2.example.com | [010 01-05 02:50:21.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 -peer1.org2.example.com | [011 01-05 02:50:21.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 -peer1.org2.example.com | [012 01-05 02:50:21.54 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 02:50:21.54 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-05 02:50:21.54 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 02:50:21.54 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 02:50:21.54 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 02:50:21.54 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 02:50:21.54 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 02:50:21.54 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 02:50:21.54 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.5:7051 -peer1.org2.example.com | [01b 01-05 02:50:21.54 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 02:50:21.55 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.5:7051 -peer1.org2.example.com | [01d 01-05 02:50:21.55 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 02:50:21.57 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 02:50:21.58 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 02:50:21.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 | [021 01-05 02:50:21.58 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 02:50:21.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 | [023 01-05 02:50:21.58 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 02:50:21.58 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [025 01-05 02:50:21.59 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 02:50:21.59 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-05 02:50:21.60 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.NewServerCertKeyPair.newCertKeyPair -> DEBU Classified peer1.org2.example.com as a hostname, adding it as a DNS SAN -peer1.org2.example.com | [028 01-05 02:50:21.61 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 02:50:21.61 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 02:50:21.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 | [02b 01-05 02:50:21.61 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 02:50:21.61 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 02:50:21.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 -peer1.org2.example.com | [02e 01-05 02:50:21.62 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 02:50:21.62 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 02:50:21.62 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 02:50:21.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 -orderer.example.com | [079 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [0bc 01-05 02:50:20.42 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 | [098 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bb66a04]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [032 01-05 02:50:21.62 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 | [099 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0bd 01-05 02:50:20.42 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 -orderer.example.com | [07a 01-05 02:50:21.84 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 | [09a 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4bb66a04]Received INIT, initializing chaincode -peer1.org2.example.com | [033 01-05 02:50:21.62 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 02:50:21.62 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 02:50:21.62 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 02:50:21.62 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 02:50:21.62 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 02:50:21.63 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | [039 01-05 02:50:21.63 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 02:50:21.63 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 02:50:21.63 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 02:50:21.63 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-05 02:50:21.63 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -peer1.org2.example.com | [03e 01-05 02:50:21.63 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth]] decorators:[map[name:DefaultDecorator]]]] -peer1.org2.example.com | [03f 01-05 02:50:21.63 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 02:50:21.63 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 02:50:21.64 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 02:50:21.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 -peer0.org1.example.com | [0be 01-05 02:50:20.42 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 | [043 01-05 02:50:21.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 -peer1.org2.example.com | [044 01-05 02:50:21.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.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.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd -peer1.org2.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -peer1.org1.example.com | [09b 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | [07b 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U -peer1.org1.example.com | [09c 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0bf 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [07c 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [07d 01-05 02:50:21.84 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 -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 02:50:21.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 -peer1.org2.example.com | [046 01-05 02:50:21.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.org1.example.com | [0c1 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0c0 01-05 02:50:20.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 lscc:1.1.0 launch seq completed -peer0.org1.example.com | [0c2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [0c3 01-05 02:50:20.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 -peer1.org2.example.com | [047 01-05 02:50:21.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 -peer1.org2.example.com | [048 01-05 02:50:21.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 -peer1.org2.example.com | [049 01-05 02:50:21.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 -peer1.org1.example.com | [09d 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bb66a04]Init get response status: 200 -peer1.org1.example.com | [09e 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bb66a04]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [09f 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bb66a04]Move state message COMPLETED -peer1.org2.example.com | [04a 01-05 02:50:21.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 -peer1.org2.example.com | [04b 01-05 02:50:21.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 1515120621661445000 -peer1.org2.example.com | [04c 01-05 02:50:21.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 {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 } -peer0.org1.example.com | [0c4 01-05 02:50:20.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... -peer1.org1.example.com | [0a0 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bb66a04]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [07e 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [07f 01-05 02:50:21.84 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 | [04d 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0a1 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bb66a04]send state message COMPLETED -peer0.org1.example.com | [0c5 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]Move state message READY -peer0.org1.example.com | [0c6 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | [080 01-05 02:50:21.84 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 | [04e 01-05 02:50:21.66 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 | [04f 01-05 02:50:21.66 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-05 02:50:21.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 | [051 01-05 02:50:21.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 -peer1.org2.example.com | [053 01-05 02:50:21.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 Org2MSP validating identity -peer1.org2.example.com | [054 01-05 02:50:21.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 -peer1.org1.example.com | [0a2 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bb66a04]Received message COMPLETED from shim -peer1.org1.example.com | [0a3 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4bb66a04]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0a4 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4bb66a04-a173-4557-9bb3-49c73f90d943]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0a5 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4bb66a04-a173-4557-9bb3-49c73f90d943, channelID: -peer1.org2.example.com | [055 01-05 02:50:21.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.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [0c7 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b366d7cd]Entered state ready -peer0.org1.example.com | [0c8 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b366d7cd-6c86-42c7-8df4-1d82cf62b582, channelID: -peer0.org1.example.com | [0c9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]sending state message READY -peer0.org1.example.com | [0ca 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Received message READY from shim -peer1.org2.example.com | [056 01-05 02:50:21.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: 1801AA01C7060A20880F8BD5A2D3CECB...455254494649434154452D2D2D2D2D0A -peer1.org2.example.com | [057 01-05 02:50:21.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: 9959CF623DAA109D76714B210C3BD675B489833CF233FBA05D99F1A128FB59E1 -peer1.org2.example.com | [058 01-05 02:50:21.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.1.0,txid=8cae4b55-dd23-4e7b-921a-1b03ce532ae8,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [059 01-05 02:50:21.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.1.0 is being launched -peer1.org2.example.com | [05a 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [0a6 01-05 02:50:19.92 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 | [0cb 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b366d7cd]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0cc 01-05 02:50:20.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 -peer0.org1.example.com | [0cd 01-05 02:50:20.42 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 | [05b 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [0a7 01-05 02:50:19.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 -orderer.example.com | [081 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [082 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [083 01-05 02:50:21.84 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 -peer1.org2.example.com | [05c 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [05d 01-05 02:50:21.66 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 | [0a8 01-05 02:50:19.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.1.0,txid=0a98e4c4-68d0-4e6e-86e4-49c4c4a073ee,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org1.example.com | [0a9 01-05 02:50:19.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.1.0 is being launched -orderer.example.com | [084 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [085 01-05 02:50:21.84 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 -peer1.org2.example.com | [05e 01-05 02:50:21.66 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 | [05f 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [0ce 01-05 02:50:20.42 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 | [086 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium -orderer.example.com | [087 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP -peer1.org1.example.com | [0aa 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [060 01-05 02:50:21.66 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 | [0cf 01-05 02:50:20.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: lscc:1.1.0 -peer1.org2.example.com | [061 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | [0ab 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [0d0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b366d7cd]Inside sendExecuteMessage. Message INIT -orderer.example.com | [088 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 -peer1.org1.example.com | [0ac 01-05 02:50:19.92 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 | [0d1 01-05 02:50:20.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 | [0d2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b366d7cd]sendExecuteMsg trigger event INIT -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [0ad 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [062 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer0.org1.example.com | [0d3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]Move state message INIT -peer0.org1.example.com | [0d4 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [0d5 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [063 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -peer1.org2.example.com | [064 01-05 02:50:21.66 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 | [065 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer1.org2.example.com | [052 01-05 02:50:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [066 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org2.example.com | [067 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org1.example.com | [0ae 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: lscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -orderer.example.com | [089 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -orderer.example.com | [08a 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -orderer.example.com | [08b 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -peer1.org2.example.com | [068 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org2.example.com | [069 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer1.org2.example.com | [06a 01-05 02:50:21.67 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 | [06c 01-05 02:50:21.67 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 | [06b 01-05 02:50:21.67 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 | [0af 01-05 02:50:19.92 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 | [0d6 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]sending state message INIT -peer0.org1.example.com | [0d7 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Received message INIT from shim -peer1.org2.example.com | [06d 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572312E6F...455254494649434154452D2D2D2D2D0A -peer1.org1.example.com | [0b0 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [06e 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 6D953F42C3F8A140428C64A81E4512136A11C0CD25E8B2B8E6404EC38DEB60D6 -peer1.org2.example.com | [06f 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer1.org2.example.com | [070 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [071 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer1.org2.example.com | [072 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [073 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [074 01-05 02:50:21.67 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 | [075 01-05 02:50:21.67 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 | [076 01-05 02:50:21.67 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 | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -peer0.org1.example.com | [0d8 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b366d7cd]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [08c 01-05 02:50:21.84 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 | [078 01-05 02:50:21.67 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 | [077 01-05 02:50:21.67 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 | [079 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [07b 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer1.org2.example.com | [07a 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [07c 01-05 02:50:21.67 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 | [07d 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [07e 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [07f 01-05 02:50:21.67 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 | [0d9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0da 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b366d7cd]Received INIT, initializing chaincode -peer0.org1.example.com | [0db 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0dc 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Init get response status: 200 -peer1.org2.example.com | [081 01-05 02:50:21.67 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 | [080 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [082 01-05 02:50:21.67 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 | [083 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8cae4b55]Move state message READY -peer1.org2.example.com | [084 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8cae4b55]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [0dd 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Init succeeded. Sending COMPLETED -orderer.example.com | [08d 01-05 02:50:21.84 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 -peer0.org2.example.com | [001 01-05 02:50:19.08 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [085 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8cae4b55]Entered state ready -orderer.example.com | [08e 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -orderer.example.com | [08f 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -orderer.example.com | [090 01-05 02:50:21.84 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 | [002 01-05 02:50:19.08 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +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.org2.example.com | [086 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8cae4b55-dd23-4e7b-921a-1b03ce532ae8, channelID: -peer1.org2.example.com | [087 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8cae4b55]sending state message READY -peer1.org2.example.com | [088 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8cae4b55]Received message READY from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +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 -peer0.org1.example.com | [0de 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Move state message COMPLETED +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 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [091 01-05 02:50:21.84 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 | [089 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8cae4b55]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0df 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b366d7cd]Handling ChaincodeMessage of type: COMPLETED(state:ready) peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric -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 | [092 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -orderer.example.com | [093 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [08a 01-05 02:50:21.67 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 | [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 | [0b1 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer0.org1.example.com | [0e0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]send state message COMPLETED -orderer.example.com | [094 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [095 01-05 02:50:21.84 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 | [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 | [0b2 01-05 02:50:19.92 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -peer0.org2.example.com | [003 01-05 02:50:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -orderer.example.com | [096 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [097 01-05 02:50:21.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/Admins -orderer.example.com | [098 01-05 02:50:21.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 -orderer.example.com | [099 01-05 02:50:21.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 -orderer.example.com | [09a 01-05 02:50:21.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' -peer0.org2.example.com | [004 01-05 02:50:19.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org2.example.com | [08b 01-05 02:50:21.67 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 | [0b3 01-05 02:50:19.92 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 | [0b4 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer1.org1.example.com | [0b5 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -peer1.org1.example.com | [0b6 01-05 02:50:19.93 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 | [005 01-05 02:50:19.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.org2.example.com | [006 01-05 02:50:19.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 -peer0.org2.example.com | [007 01-05 02:50:19.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 -peer0.org2.example.com | [008 01-05 02:50:19.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org2.example.com | [009 01-05 02:50:19.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org2.example.com | [00a 01-05 02:50:19.10 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 02:50:19.10 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 02:50:19.10 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 | [08c 01-05 02:50:21.67 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 | [09b 01-05 02:50:21.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 | [00d 01-05 02:50:19.10 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 | [0b7 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer1.org2.example.com | [08d 01-05 02:50:21.67 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 | [0e1 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]Received message COMPLETED from shim -peer0.org2.example.com | [00e 01-05 02:50:19.11 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 | [08e 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8cae4b55]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [08f 01-05 02:50:21.67 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 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8cae4b55]sendExecuteMsg trigger event INIT -orderer.example.com | [09c 01-05 02:50:21.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] -orderer.example.com | [09d 01-05 02:50:21.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.org2.example.com | [00f 01-05 02:50:19.11 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 02:50:19.11 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 02:50:19.11 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-05 02:50:19.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 -peer0.org2.example.com | [013 01-05 02:50:19.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/] -peer0.org2.example.com | [014 01-05 02:50:19.12 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 02:50:19.12 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 02:50:19.14 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 02:50:19.14 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 02:50:19.14 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 | [091 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8cae4b55]Move state message INIT -peer1.org2.example.com | [092 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8cae4b55]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [019 01-05 02:50:19.14 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 | [0b8 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [0b9 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer1.org1.example.com | [0ba 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0bb 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [01a 01-05 02:50:19.14 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.2:7051 -peer1.org2.example.com | [093 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [094 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8cae4b55]sending state message INIT -peer1.org2.example.com | [095 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8cae4b55]Received message INIT from shim -peer0.org2.example.com | [01b 01-05 02:50:19.14 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org2.example.com:7051 -orderer.example.com | [09e 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [09f 01-05 02:50:21.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] -orderer.example.com | [0a0 01-05 02:50:21.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.org2.example.com | [01c 01-05 02:50:19.14 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 -peer0.org2.example.com | [01d 01-05 02:50:19.14 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org2.example.com:7051 -peer1.org2.example.com | [096 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8cae4b55]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0e2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0bc 01-05 02:50:19.93 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 | [01e 01-05 02:50:19.16 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [097 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [098 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8cae4b55]Received INIT, initializing chaincode -peer1.org2.example.com | [099 01-05 02:50:21.67 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [09a 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [09b 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8cae4b55]Init get response status: 200 -peer0.org2.example.com | [01f 01-05 02:50:19.17 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -orderer.example.com | [0a1 01-05 02:50:21.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 | [0bd 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [0e3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd-6c86-42c7-8df4-1d82cf62b582]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [09c 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8cae4b55]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [020 01-05 02:50:19.17 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 02:50:19.17 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -orderer.example.com | [0a2 01-05 02:50:21.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 | [0e4 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b366d7cd-6c86-42c7-8df4-1d82cf62b582, channelID: -peer1.org1.example.com | [0be 01-05 02:50:19.93 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 | [022 01-05 02:50:19.17 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 | [0e5 01-05 02:50:20.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 | [0e6 01-05 02:50:20.42 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 | [023 01-05 02:50:19.17 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 | [0bf 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.1.0" , sending back REGISTERED -peer1.org1.example.com | [0c0 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [0c1 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [0c2 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0c3 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [024 01-05 02:50:19.17 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [09d 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8cae4b55]Move state message COMPLETED -orderer.example.com | [0a3 01-05 02:50:21.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 -peer0.org1.example.com | [0e7 01-05 02:50:20.42 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=c1001fa6-e705-419c-b3c3-b648dfe71a02,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org1.example.com | [0c4 01-05 02:50:19.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.1.0 launch seq completed -peer0.org2.example.com | [025 01-05 02:50:19.17 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com -peer1.org2.example.com | [09e 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8cae4b55]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [0a4 01-05 02:50:21.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 | [0e8 01-05 02:50:20.43 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 | [026 01-05 02:50:19.17 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 -orderer.example.com | [0a5 01-05 02:50:21.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 -peer1.org2.example.com | [09f 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8cae4b55]send state message COMPLETED -peer0.org1.example.com | [0e9 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [027 01-05 02:50:19.18 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 | [0c5 01-05 02:50:19.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 | [0a0 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8cae4b55]Received message COMPLETED from shim -orderer.example.com | [0a6 01-05 02:50:21.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] -orderer.example.com | [0a7 01-05 02:50:21.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 -peer0.org2.example.com | [028 01-05 02:50:19.18 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 | [029 01-05 02:50:19.18 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-05 02:50:19.18 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-05 02:50:19.18 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 | [02c 01-05 02:50:19.18 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 | [0c6 01-05 02:50:19.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 | [0c7 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a98e4c4]Move state message READY -peer0.org2.example.com | [02d 01-05 02:50:19.18 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 | [0a1 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8cae4b55]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0ea 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | [0a8 01-05 02:50:21.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]} -peer0.org2.example.com | [02e 01-05 02:50:19.18 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 | [0a2 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8cae4b55-dd23-4e7b-921a-1b03ce532ae8]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0c8 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0a98e4c4]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [0eb 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=escc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org2.example.com | [02f 01-05 02:50:19.18 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 | [0a3 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8cae4b55-dd23-4e7b-921a-1b03ce532ae8, channelID: -peer1.org2.example.com | [0a4 01-05 02:50:21.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 | [0a5 01-05 02:50:21.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 -peer0.org2.example.com | [030 01-05 02:50:19.18 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 | [0c9 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0a98e4c4]Entered state ready -peer0.org1.example.com | [0ec 01-05 02:50:20.43 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 | [0a6 01-05 02:50:21.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.1.0,txid=731aba10-58b9-4f9c-aca1-819d806852d1,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org2.example.com | [0a7 01-05 02:50:21.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.1.0 is being launched -peer1.org2.example.com | [0a8 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [0a9 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [0aa 01-05 02:50:21.68 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 | [031 01-05 02:50:19.18 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 | [0ab 01-05 02:50:21.68 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 | [032 01-05 02:50:19.18 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 | [0ac 01-05 02:50:21.68 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 | [0a9 01-05 02:50:21.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] -peer1.org1.example.com | [0ca 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0a98e4c4-68d0-4e6e-86e4-49c4c4a073ee, channelID: -peer1.org1.example.com | [0cb 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a98e4c4]sending state message READY -peer1.org2.example.com | [0ad 01-05 02:50:21.68 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 | [033 01-05 02:50:19.18 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 | [0cc 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a98e4c4]Received message READY from shim -peer0.org1.example.com | [0ed 01-05 02:50:20.43 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 | [034 01-05 02:50:19.18 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 | [0ae 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -orderer.example.com | [0aa 01-05 02:50:21.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 | [035 01-05 02:50:19.18 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 | [0ee 01-05 02:50:20.43 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 | CORE_CHAINCODE_ID_NAME=lscc:1.1.0 -orderer.example.com | [0ab 01-05 02:50:21.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 | [0ce 01-05 02:50:19.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 -peer0.org2.example.com | [036 01-05 02:50:19.19 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 | [0ef 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0ac 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -peer0.org2.example.com | [037 01-05 02:50:19.19 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 | [0cf 01-05 02:50:19.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 | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | [038 01-05 02:50:19.19 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | [0d0 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [0ad 01-05 02:50:21.84 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 | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | [039 01-05 02:50:19.19 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-05 02:50:19.19 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 | [0d1 01-05 02:50:19.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.1.0 -orderer.example.com | [0ae 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [0af 01-05 02:50:21.84 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 | [0b0 01-05 02:50:21.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 | [03b 01-05 02:50:19.19 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 02:50:19.19 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer0.org2.example.com | [03d 01-05 02:50:19.19 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 | [03e 01-05 02:50:19.19 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 02:50:19.19 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-05 02:50:19.19 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [041 01-05 02:50:19.20 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [042 01-05 02:50:19.21 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 | [0d2 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0a98e4c4]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [0b1 01-05 02:50:21.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] -peer0.org2.example.com | [043 01-05 02:50:19.21 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 | [0d3 01-05 02:50:19.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... -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | [0b2 01-05 02:50:21.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.org2.example.com | [044 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -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 | [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 -peer1.org1.example.com | [0d4 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0a98e4c4]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [0d5 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a98e4c4]Move state message INIT -peer1.org1.example.com | [0d6 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0a98e4c4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0af 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.1.0 peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -orderer.example.com | [0b3 01-05 02:50:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [0d7 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [0b0 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | Version: 1.1.0 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [0d8 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a98e4c4]sending state message INIT -peer1.org2.example.com | [0b1 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -orderer.example.com | Go version: go1.9.2 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +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 -peer1.org1.example.com | [0cd 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a98e4c4]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [0b2 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -orderer.example.com | OS/Arch: linux/amd64 peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIsTFoftFSbhQW3yKTX+bQC+Ry/3z9tx -peer1.org1.example.com | [0d9 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a98e4c4]Received message INIT from shim -peer1.org2.example.com | [0b3 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -orderer.example.com | Experimental features: false -orderer.example.com | [0b4 01-05 02:50:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests peer0.org2.example.com | r/X846QAFI3FX4DI5Bg1ICvwRzTFDa1LBkuYhiVkFYf5Q6S2oXFTAm6jTTBLMA4G -orderer.example.com | [0b5 01-05 02:50:23.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [0b6 01-05 02:50:23.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47152 -orderer.example.com | [0b7 01-05 02:50:23.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47152 peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -peer0.org1.example.com | [0f0 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -peer0.org1.example.com | [0f1 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer1.org2.example.com | [0b4 01-05 02:50:21.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 | [0da 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a98e4c4]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [0b8 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler 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 02:50:19.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [046 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0db 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [0dc 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0a98e4c4]Received INIT, initializing chaincode -peer1.org1.example.com | [0dd 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0de 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a98e4c4]Init get response status: 200 -peer0.org2.example.com | [047 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [048 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [049 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [04a 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [04b 01-05 02:50:19.22 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 1515120619223676500 -peer1.org2.example.com | [0b5 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer0.org2.example.com | [04c 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {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.org2.example.com | [04d 01-05 02:50:19.22 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 | [04e 01-05 02:50:19.22 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 | [04f 01-05 02:50:19.22 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-05 02:50:19.22 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 | [052 01-05 02:50:19.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [051 01-05 02:50:19.22 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 | [0b6 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [0b7 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -peer1.org2.example.com | [0b8 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0b9 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [053 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [0b9 01-05 02:50:23.86 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:47154 -peer1.org1.example.com | [0df 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a98e4c4]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0f2 01-05 02:50:20.43 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 | [054 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [055 01-05 02:50:19.23 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 | [056 01-05 02:50:19.23 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 02:50:19.23 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 02:50:19.23 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 | [059 01-05 02:50:19.23 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=3006f439-faf4-4d22-9bc6-2295d9228fda,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [0ba 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | [0ba 01-05 02:50:23.86 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:47154 -peer0.org2.example.com | [05a 01-05 02:50:19.23 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 | [05b 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [0e0 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a98e4c4]Move state message COMPLETED -orderer.example.com | [0bb 01-05 02:50:23.86 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 | [05c 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [0bb 01-05 02:50:21.68 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 | [0f3 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer1.org1.example.com | [0e1 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a98e4c4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [05d 01-05 02:50:19.23 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}] -orderer.example.com | [0bc 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid -peer1.org2.example.com | [0bc 01-05 02:50:21.68 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 | [0e2 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a98e4c4]send state message COMPLETED -peer0.org2.example.com | [05e 01-05 02:50:19.23 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 | [0bd 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [0bd 01-05 02:50:21.68 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 02:50:21.68 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 | [05f 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: cscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | [0be 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [0bf 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [0c0 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [061 01-05 02:50:19.23 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 | [0bf 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0c0 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0c1 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0c2 01-05 02:50:21.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 lscc:1.1.0 launch seq completed -peer1.org2.example.com | [0c3 01-05 02:50:21.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 -peer0.org2.example.com | [062 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +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 +peer1.org2.example.com | Version: 1.1.0 +peer1.org2.example.com | Go version: go1.9.2 +peer1.org2.example.com | OS/Arch: linux/amd64 +peer1.org2.example.com | Experimental features: false +peer1.org2.example.com | Chaincode: +peer1.org2.example.com | Base Image Version: 0.4.2 +peer1.org2.example.com | Base Docker Namespace: hyperledger +peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +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 | [0c4 01-05 02:50:21.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.org2.example.com | [0c5 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [731aba10]Move state message READY -peer1.org1.example.com | [0e3 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a98e4c4]Received message COMPLETED from shim -peer0.org1.example.com | [0f4 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-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 -orderer.example.com | [0c1 01-05 02:50:23.86 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 | [0c6 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [731aba10]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [0e4 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0a98e4c4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [0c2 01-05 02:50:23.86 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.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.org2.example.com | [0c7 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [731aba10]Entered state ready -peer0.org1.example.com | [0f5 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [0e5 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0a98e4c4-68d0-4e6e-86e4-49c4c4a073ee]HandleMessage- COMPLETED. Notify +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 -peer0.org1.example.com | [0f6 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer1.org2.example.com | [0c8 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:731aba10-58b9-4f9c-aca1-819d806852d1, channelID: -orderer.example.com | [0c3 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [0c4 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [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 -peer0.org1.example.com | [0f7 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [0c9 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [731aba10]sending state message READY -peer1.org1.example.com | [0e6 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0a98e4c4-68d0-4e6e-86e4-49c4c4a073ee, channelID: -orderer.example.com | [0c5 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [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 -peer0.org1.example.com | [0f8 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer0.org1.example.com | [0f9 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +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 | [0c6 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [0e7 01-05 02:50:19.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 | [0ca 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [731aba10]Received message READY from shim +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} -peer0.org2.example.com | [063 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -peer0.org2.example.com | [064 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -orderer.example.com | [0c7 01-05 02:50:23.86 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 | [065 01-05 02:50:19.23 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 | [066 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -peer0.org2.example.com | [067 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org2.example.com | [068 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -peer0.org2.example.com | [069 01-05 02:50:19.23 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 | [06a 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -peer1.org2.example.com | [0cb 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [731aba10]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [0cc 01-05 02:50:21.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 -peer1.org2.example.com | [0cd 01-05 02:50:21.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.org2.example.com | [0ce 01-05 02:50:21.68 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 | [0e8 01-05 02:50:19.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.org2.example.com | [06b 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [06c 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -peer0.org2.example.com | [06d 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0cf 01-05 02:50:21.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: lscc:1.1.0 -peer1.org2.example.com | [0d0 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [731aba10]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0d1 01-05 02:50:21.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 | [06e 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [06f 01-05 02:50:19.23 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 | [070 01-05 02:50:19.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 | [071 01-05 02:50:19.23 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 | [072 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.1.0" , sending back REGISTERED -peer0.org2.example.com | [073 01-05 02:50:19.23 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 | [074 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [075 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [076 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0d2 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [731aba10]sendExecuteMsg trigger event INIT -orderer.example.com | [0c8 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [0fa 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [077 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.1.0 launch seq completed -peer1.org1.example.com | [0e9 01-05 02:50:19.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.1.0,txid=fe55a45b-cf8c-4dcd-a373-355c4f6bbfed,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org1.example.com | [0fb 01-05 02:50:20.43 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 | [0d3 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [731aba10]Move state message INIT -orderer.example.com | [0c9 01-05 02:50:23.86 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 | [078 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [0ea 01-05 02:50:19.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.1.0 is being launched -peer1.org1.example.com | [0eb 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [0d4 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [731aba10]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0d5 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [07a 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [060 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -peer0.org2.example.com | [079 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org2.example.com | [07b 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3006f439]Move state message READY -peer0.org2.example.com | [07c 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3006f439]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [07d 01-05 02:50:19.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3006f439]Entered state ready -orderer.example.com | [0ca 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [0ec 01-05 02:50:19.93 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [0fc 01-05 02:50:20.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 | [07e 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3006f439-faf4-4d22-9bc6-2295d9228fda, channelID: -orderer.example.com | [0cb 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [0ed 01-05 02:50:19.93 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 | [0d6 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [731aba10]sending state message INIT -peer0.org2.example.com | [07f 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3006f439]sending state message READY -orderer.example.com | [0cc 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [0fd 01-05 02:50:20.43 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 | [080 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3006f439]Received message READY from shim -peer1.org2.example.com | [0d7 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [731aba10]Received message INIT from shim -peer1.org1.example.com | [0ee 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/peer.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -peer1.org1.example.com | [0ef 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [0f0 01-05 02:50:19.94 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 | [081 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3006f439]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [082 01-05 02:50:19.24 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 | [083 01-05 02:50:19.24 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 | [084 01-05 02:50:19.24 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 | [085 01-05 02:50:19.24 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 | [086 01-05 02:50:19.24 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 | [087 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3006f439]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0d8 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [731aba10]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [0cd 01-05 02:50:23.86 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 | [0fe 01-05 02:50:20.43 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 | [0d9 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [0da 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [731aba10]Received INIT, initializing chaincode -peer1.org2.example.com | [0db 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [088 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [0ce 01-05 02:50:23.86 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 | [089 01-05 02:50:19.24 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 | [08a 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF4060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -peer0.org2.example.com | [08b 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3006f439]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [08c 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: C9A658EE541CC838E567A65483C7F6AC2B592463FD154A9A6B367A9A1602B914 -peer0.org2.example.com | [08d 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3006f439]Move state message INIT -peer1.org2.example.com | [0dc 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [731aba10]Init get response status: 200 -peer1.org1.example.com | [0f1 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer0.org2.example.com | [08e 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3006f439]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [08f 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [090 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3006f439]sending state message INIT -peer0.org2.example.com | [091 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3006f439]Received message INIT from shim -peer0.org2.example.com | [092 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3006f439]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [093 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [094 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3006f439]Received INIT, initializing chaincode -peer0.org2.example.com | [095 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [096 01-05 02:50:19.24 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 | [097 01-05 02:50:19.24 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 | [0dd 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [731aba10]Init succeeded. Sending COMPLETED -orderer.example.com | [0cf 01-05 02:50:23.86 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.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [0ff 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [098 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [0de 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [731aba10]Move state message COMPLETED -peer0.org2.example.com | [099 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 -peer0.org2.example.com | [09a 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [09b 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3006f439]Init get response status: 200 -peer0.org2.example.com | [09c 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3006f439]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [09d 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3006f439]Move state message COMPLETED -peer0.org2.example.com | [09e 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3006f439]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [09f 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3006f439]send state message COMPLETED -peer0.org2.example.com | [0a0 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3006f439]Received message COMPLETED from shim -peer0.org2.example.com | [0a1 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3006f439]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0a2 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3006f439-faf4-4d22-9bc6-2295d9228fda]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [0a3 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3006f439-faf4-4d22-9bc6-2295d9228fda, channelID: -peer0.org2.example.com | [0a4 01-05 02:50:19.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 | [0a5 01-05 02:50:19.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 | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [0df 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [731aba10]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0a6 01-05 02:50:19.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=7281cb30-78ba-4cfd-a4e8-49c8eb9444af,syscc=true,proposal=0x0,canname=lscc:1.1.0 -orderer.example.com | [0d0 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [0a7 01-05 02:50:19.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 | [0a8 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [0a9 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [0aa 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=lscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org2.example.com | [0e0 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [731aba10]send state message COMPLETED -peer0.org2.example.com | [0ab 01-05 02:50:19.24 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 | [0ac 01-05 02:50:19.24 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 | [0e1 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [731aba10]Received message COMPLETED from shim -peer1.org2.example.com | [0e2 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [731aba10]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [0ad 01-05 02:50:19.24 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 | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [0e3 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [731aba10-58b9-4f9c-aca1-819d806852d1]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [100 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0ae 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [0e4 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:731aba10-58b9-4f9c-aca1-819d806852d1, channelID: +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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +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 +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 +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 +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 +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 | 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... +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 +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 +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) +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +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 | 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 +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 +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 +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----- +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 +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 +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 +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 +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 | 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 +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] +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) +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +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 +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 +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 +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) +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 +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 +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 +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 +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----- +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 +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) +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 -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [101 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +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 +orderer.example.com | -----END CERTIFICATE----- peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [0e5 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [0f2 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock +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 -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer1.org2.example.com | [0e6 01-05 02:50:21.68 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 | [102 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +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} -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org2.example.com | [0e7 01-05 02:50:21.68 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=af4347df-3911-408f-ad86-7bf6700a22ad,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer0.org2.example.com | [0af 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -peer0.org1.example.com | [103 01-05 02:50:20.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 escc:1.1.0 launch seq completed -peer1.org1.example.com | [0f3 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [0e8 01-05 02:50:21.68 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 | [0b0 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -peer0.org1.example.com | [104 01-05 02:50:20.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 -peer0.org1.example.com | [105 01-05 02:50:20.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 | [106 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]Move state message READY -orderer.example.com | [0d1 01-05 02:50:23.86 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.org2.example.com | [0e9 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [0b1 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -peer0.org2.example.com | [0b2 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -peer0.org2.example.com | [0b3 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [0f4 01-05 02:50:19.94 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 | [0b4 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [0b5 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -peer0.org2.example.com | [0b6 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [0b7 01-05 02:50:19.24 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 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0ea 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [107 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org2.example.com | [0b9 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [0eb 01-05 02:50:21.68 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 | [0f6 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [0ba 01-05 02:50:19.24 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 | [0ec 01-05 02:50:21.68 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 | [0f7 01-05 02:50:19.94 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 -peer0.org2.example.com | [0bb 01-05 02:50:19.24 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 | [0ed 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer1.org1.example.com | [0f8 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [108 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c1001fa6]Entered state ready -peer1.org2.example.com | [0ee 01-05 02:50:21.68 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 | [0bc 01-05 02:50:19.24 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 | [0bd 01-05 02:50:19.24 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 -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer0.org2.example.com | [0be 01-05 02:50:19.24 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----- -orderer.example.com | [0d2 01-05 02:50:23.86 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.org2.example.com | [0ef 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | [0bf 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0c0 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [0d3 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [109 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c1001fa6-e705-419c-b3c3-b648dfe71a02, channelID: -peer1.org1.example.com | [0f9 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.1.0 -peer0.org2.example.com | [0c1 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [0d4 01-05 02:50:23.87 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 | [10a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]sending state message READY -peer1.org1.example.com | [0fa 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer0.org2.example.com | [0c2 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.1.0 launch seq completed -peer1.org1.example.com | [0fb 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [0d5 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [0fc 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [0c3 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [0d6 01-05 02:50:23.87 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 | [10b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Received message READY from shim -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -orderer.example.com | [0d7 01-05 02:50:23.87 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 | [0fd 01-05 02:50:19.94 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 | [0c4 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [0d8 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [10c 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1001fa6]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [0fe 01-05 02:50:19.94 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 | [0c5 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7281cb30]Move state message READY -orderer.example.com | [0d9 01-05 02:50:23.87 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 | [10d 01-05 02:50:20.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 | [0c6 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7281cb30]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [0ff 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | [0da 01-05 02:50:23.87 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 | [0c7 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7281cb30]Entered state ready -peer0.org1.example.com | [10e 01-05 02:50:20.43 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 | [100 01-05 02:50:19.94 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 | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [0c8 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7281cb30-78ba-4cfd-a4e8-49c8eb9444af, channelID: -orderer.example.com | [0db 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [10f 01-05 02:50:20.43 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 | 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 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -orderer.example.com | [0dc 01-05 02:50:23.87 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 | [0c9 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7281cb30]sending state message READY -peer1.org1.example.com | [101 01-05 02:50:19.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 | [102 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [103 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0ca 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7281cb30]Received message READY from shim -orderer.example.com | [0dd 01-05 02:50:23.87 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.org2.example.com | [0f1 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer1.org2.example.com | [0f2 01-05 02:50:21.68 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 | [0f3 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer0.org2.example.com | [0cb 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7281cb30]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [104 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | [0de 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [0cc 01-05 02:50:19.24 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 | [0cd 01-05 02:50:19.24 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-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [105 01-05 02:50:19.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 escc:1.1.0 launch seq completed -peer0.org2.example.com | [0ce 01-05 02:50:19.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [0f5 01-05 02:50:21.68 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 | [110 01-05 02:50:20.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: escc:1.1.0 -peer1.org1.example.com | [106 01-05 02:50:19.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 | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [111 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1001fa6]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [0cf 01-05 02:50:19.24 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 | [0f6 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -peer1.org1.example.com | [107 01-05 02:50:19.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.org1.example.com | [108 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe55a45b]Move state message READY -peer1.org1.example.com | [109 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fe55a45b]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org2.example.com | [0d0 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7281cb30]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0f7 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [112 01-05 02:50:20.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... -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer0.org2.example.com | [0d1 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org1.example.com | [10a 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fe55a45b]Entered state ready -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org2.example.com | [0d2 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7281cb30]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [0f8 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer0.org2.example.com | [0d3 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7281cb30]Move state message INIT -orderer.example.com | oQmWQsjpiQ== -peer1.org2.example.com | [0f9 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [10b 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fe55a45b-cf8c-4dcd-a373-355c4f6bbfed, channelID: -peer0.org2.example.com | [0d4 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7281cb30]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [10c 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe55a45b]sending state message READY -peer0.org1.example.com | [113 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1001fa6]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [114 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]Move state message INIT -peer0.org1.example.com | [115 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [0d5 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [0d6 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7281cb30]sending state message INIT -orderer.example.com | [0df 01-05 02:50:23.87 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 | [0fa 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [0d7 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7281cb30]Received message INIT from shim -peer1.org2.example.com | [0fb 01-05 02:50:21.68 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 | [10d 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe55a45b]Received message READY from shim -peer1.org1.example.com | [10e 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fe55a45b]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [0d8 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7281cb30]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [0fc 01-05 02:50:21.68 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 | [116 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [10f 01-05 02:50:19.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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org2.example.com | [0d9 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [0fd 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -peer0.org1.example.com | [117 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]sending state message INIT -peer0.org2.example.com | [0da 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7281cb30]Received INIT, initializing chaincode -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [110 01-05 02:50:19.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.org1.example.com | [111 01-05 02:50:19.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 | [112 01-05 02:50:19.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: escc:1.1.0 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org2.example.com | [0db 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0dc 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7281cb30]Init get response status: 200 -peer0.org2.example.com | [0dd 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7281cb30]Init succeeded. Sending COMPLETED -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org2.example.com | [0de 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7281cb30]Move state message COMPLETED -peer1.org2.example.com | [0fe 01-05 02:50:21.68 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.org2.example.com | [0df 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7281cb30]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer1.org2.example.com | [0ff 01-05 02:50:21.68 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 | [118 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Received message INIT from shim -peer0.org2.example.com | [0e0 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7281cb30]send state message COMPLETED -peer0.org2.example.com | [0e1 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7281cb30]Received message COMPLETED from shim -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [100 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [113 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fe55a45b]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [0e2 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7281cb30]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [119 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1001fa6]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [101 01-05 02:50:21.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [114 01-05 02:50:19.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 | [0e0 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [115 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fe55a45b]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [116 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe55a45b]Move state message INIT -orderer.example.com | [0e1 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [102 01-05 02:50:21.69 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [0e3 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7281cb30-78ba-4cfd-a4e8-49c8eb9444af]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [117 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fe55a45b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [103 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.1.0 launch seq completed -orderer.example.com | [0e2 01-05 02:50:23.87 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 | [0e4 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7281cb30-78ba-4cfd-a4e8-49c8eb9444af, channelID: -peer0.org1.example.com | [11b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c1001fa6]Received INIT, initializing chaincode -peer1.org1.example.com | [118 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [104 01-05 02:50:21.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 -orderer.example.com | [0e3 01-05 02:50:23.87 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 | [11c 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [0e5 01-05 02:50:19.25 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 | [0e6 01-05 02:50:19.25 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 | [0e7 01-05 02:50:19.25 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=44e2249a-fb4b-4286-b61c-8d9a802504f5,syscc=true,proposal=0x0,canname=escc:1.1.0 -orderer.example.com | [0e4 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [105 01-05 02:50:21.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 | [106 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af4347df]Move state message READY -peer1.org1.example.com | [119 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe55a45b]sending state message INIT -peer0.org2.example.com | [0e8 01-05 02:50:19.25 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 | [0e5 01-05 02:50:23.87 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 -peer1.org2.example.com | [107 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [af4347df]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [11a 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe55a45b]Received message INIT from shim -peer0.org2.example.com | [0e9 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [11d 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Init get response status: 200 -orderer.example.com | [0e6 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [108 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [af4347df]Entered state ready -orderer.example.com | [0e7 01-05 02:50:23.87 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 | [0ea 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [11e 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0eb 01-05 02:50:19.25 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 | [0e8 01-05 02:50:23.87 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.org1.example.com | [11b 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fe55a45b]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0ec 01-05 02:50:19.25 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 | [0e9 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org1.example.com | [11f 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Move state message COMPLETED -orderer.example.com | [0ea 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [11c 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [11d 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fe55a45b]Received INIT, initializing chaincode -peer1.org2.example.com | [109 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:af4347df-3911-408f-ad86-7bf6700a22ad, channelID: -peer0.org2.example.com | [0ed 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: escc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [11e 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [0ee 01-05 02:50:19.25 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 | [120 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1001fa6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [121 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]send state message COMPLETED -peer0.org1.example.com | [122 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]Received message COMPLETED from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [0ef 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [10a 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af4347df]sending state message READY -peer1.org1.example.com | [11f 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe55a45b]Init get response status: 200 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +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 | 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 +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 +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 +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 +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 +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] +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 +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 +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 +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: +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] +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 +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}] +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] +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 +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 +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}] +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} +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 +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 -peer1.org2.example.com | [10b 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af4347df]Received message READY from shim -peer1.org1.example.com | [120 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe55a45b]Init succeeded. Sending COMPLETED -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +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 peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [123 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [10c 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [af4347df]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +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 -peer1.org2.example.com | [10d 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +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] peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [124 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6-e705-419c-b3c3-b648dfe71a02]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [10e 01-05 02:50:21.69 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 02:50:21.69 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 | [110 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [111 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [af4347df]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [112 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [121 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe55a45b]Move state message COMPLETED -peer0.org1.example.com | [125 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c1001fa6-e705-419c-b3c3-b648dfe71a02, channelID: -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer1.org2.example.com | [113 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [af4347df]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [122 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fe55a45b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +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 peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | [114 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af4347df]Move state message INIT -peer1.org1.example.com | [123 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fe55a45b]send state message COMPLETED -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer0.org1.example.com | [126 01-05 02:50:20.43 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 | [115 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [af4347df]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [116 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [127 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +orderer.example.com | [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 -peer1.org2.example.com | [117 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af4347df]sending state message INIT -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer1.org2.example.com | [118 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af4347df]Received message INIT from shim -peer1.org1.example.com | [124 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fe55a45b]Received message COMPLETED from shim +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 peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [128 01-05 02:50:20.43 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=d3641855-cb97-406e-b551-06cf6a753472,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org2.example.com | [119 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [af4347df]Handling ChaincodeMessage of type: INIT(state:ready) +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 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 | [129 01-05 02:50:20.43 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 | [125 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fe55a45b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | vA2BLfriqQ== -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [11a 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [12a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [12b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [11b 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [af4347df]Received INIT, initializing chaincode -peer0.org2.example.com | [0f0 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -orderer.example.com | [0eb 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [126 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [fe55a45b-cf8c-4dcd-a373-355c4f6bbfed]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [12c 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org2.example.com | [0f1 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -peer0.org2.example.com | [0f2 01-05 02:50:19.25 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 | [0f3 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer1.org2.example.com | [11c 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [11d 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af4347df]Init get response status: 200 -peer1.org1.example.com | [127 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:fe55a45b-cf8c-4dcd-a373-355c4f6bbfed, channelID: -peer1.org1.example.com | [128 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [129 01-05 02:50:19.94 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 | [12a 01-05 02:50:19.94 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=15dc740f-990e-4530-ace2-2a94fc051dee,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [12b 01-05 02:50:19.94 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 | [12c 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [12d 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [11e 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af4347df]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [12d 01-05 02:50:20.43 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 | [11f 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af4347df]Move state message COMPLETED -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [0f4 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -peer1.org1.example.com | [12e 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org2.example.com | [120 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [af4347df]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [12e 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [0f5 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [12f 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [121 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af4347df]send state message COMPLETED -peer0.org1.example.com | [12f 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [130 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org2.example.com | [122 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af4347df]Received message COMPLETED from shim -peer0.org1.example.com | [130 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | [0f6 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org2.example.com | [123 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [af4347df]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [131 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer0.org1.example.com | [132 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer0.org1.example.com | [133 01-05 02:50:20.43 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 | [134 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer0.org1.example.com | [135 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer0.org1.example.com | [136 01-05 02:50:20.43 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 | [137 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer0.org1.example.com | [138 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [139 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer0.org1.example.com | [13a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [124 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [af4347df-3911-408f-ad86-7bf6700a22ad]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [125 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:af4347df-3911-408f-ad86-7bf6700a22ad, channelID: -peer1.org2.example.com | [126 01-05 02:50:21.69 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 | [127 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | [0f7 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [0f8 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -peer1.org2.example.com | [128 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.1.0,txid=6d52db44-4806-476d-9671-bdf9cb06eb76,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -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 -orderer.example.com | R0L5Jr8878bLU6IcEA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [0ec 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [0ed 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [0ee 01-05 02:50:23.87 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.org1.example.com | [13b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [13c 01-05 02:50:20.43 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 | [13d 01-05 02:50:20.43 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 | [13e 01-05 02:50:20.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.1.0 -peer0.org1.example.com | [13f 01-05 02:50:20.43 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 | [140 01-05 02:50:20.43 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 | [141 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [131 01-05 02:50:19.94 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 | [129 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.1.0 is being launched -orderer.example.com | [0ef 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [142 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0f9 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [132 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [12a 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [0f0 01-05 02:50:23.87 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 | [12b 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [143 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer0.org2.example.com | [0fa 01-05 02:50:19.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [12c 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer1.org2.example.com | [12d 01-05 02:50:21.69 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 | [12e 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer1.org2.example.com | [12f 01-05 02:50:21.69 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 | [130 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.1.0 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [131 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer1.org2.example.com | [132 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer1.org2.example.com | [133 01-05 02:50:21.69 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 | [134 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer1.org2.example.com | [135 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer1.org2.example.com | [136 01-05 02:50:21.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 | [137 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer1.org2.example.com | [138 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [139 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer1.org2.example.com | [13a 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [13b 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [13c 01-05 02:50:21.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 | [13d 01-05 02:50:21.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 | [13e 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -peer1.org2.example.com | [13f 01-05 02:50:21.69 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 | [140 01-05 02:50:21.69 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 | [141 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [142 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [143 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [144 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed -peer1.org2.example.com | [145 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [146 01-05 02:50:21.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 | [147 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d52db44]Move state message READY -peer1.org2.example.com | [148 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6d52db44]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [149 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [6d52db44]Entered state ready -peer1.org2.example.com | [14a 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:6d52db44-4806-476d-9671-bdf9cb06eb76, channelID: -peer0.org2.example.com | [0fb 01-05 02:50:19.26 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 | [0fc 01-05 02:50:19.26 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 | [0fd 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.1.0 -orderer.example.com | [0f1 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [0f2 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer1.org2.example.com | [14b 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d52db44]sending state message READY -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [144 01-05 02:50:20.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.1.0 launch seq completed -peer0.org2.example.com | [0fe 01-05 02:50:19.26 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.org2.example.com | [0ff 01-05 02:50:19.26 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 | [100 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [101 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [102 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [103 01-05 02:50:19.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 escc:1.1.0 launch seq completed -peer0.org2.example.com | [104 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [105 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [106 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44e2249a]Move state message READY -peer1.org2.example.com | [14c 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d52db44]Received message READY from shim -orderer.example.com | [0f3 01-05 02:50:23.87 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 | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [14e 01-05 02:50:21.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 -peer0.org1.example.com | [145 01-05 02:50:20.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 -peer0.org2.example.com | [107 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44e2249a]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [108 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [44e2249a]Entered state ready -peer0.org2.example.com | [109 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:44e2249a-fb4b-4286-b61c-8d9a802504f5, channelID: -peer0.org2.example.com | [10a 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44e2249a]sending state message READY -peer0.org2.example.com | [10b 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44e2249a]Received message READY from shim -peer1.org2.example.com | [14f 01-05 02:50:21.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 | [0f4 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [0f5 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [0f6 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [0f7 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [0f8 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [0f9 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org2.example.com | [150 01-05 02:50:21.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 | 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 | [146 01-05 02:50:20.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... -peer1.org2.example.com | [151 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org2.example.com | [152 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6d52db44]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [153 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [154 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6d52db44]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [155 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d52db44]Move state message INIT -peer1.org2.example.com | [156 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6d52db44]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [157 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [158 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d52db44]sending state message INIT -peer1.org2.example.com | [14d 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6d52db44]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [159 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d52db44]Received message INIT from shim -peer1.org2.example.com | [15a 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6d52db44]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [15b 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [15c 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6d52db44]Received INIT, initializing chaincode -peer1.org2.example.com | [15d 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d52db44]Init get response status: 200 -peer1.org2.example.com | [15e 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d52db44]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [10c 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44e2249a]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0f5 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -peer0.org1.example.com | [147 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]Move state message READY -peer0.org1.example.com | [148 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [149 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d3641855]Entered state ready -peer0.org1.example.com | [14a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d3641855-cb97-406e-b551-06cf6a753472, channelID: -peer1.org1.example.com | [133 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer1.org1.example.com | [134 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer1.org1.example.com | [135 01-05 02:50:19.94 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 | [15f 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d52db44]Move state message COMPLETED -orderer.example.com | [0fa 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [0fb 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [0fc 01-05 02:50:23.87 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 | [160 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6d52db44]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [161 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6d52db44]send state message COMPLETED -peer1.org1.example.com | [136 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer0.org2.example.com | [10d 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | [0fd 01-05 02:50:23.87 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 | [14c 01-05 02:50:20.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 -peer1.org2.example.com | [162 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6d52db44]Received message COMPLETED from shim -peer0.org2.example.com | [10e 01-05 02:50:19.26 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 | [137 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer1.org1.example.com | [138 01-05 02:50:19.94 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 | [0fe 01-05 02:50:23.87 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 | [163 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6d52db44]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [14d 01-05 02:50:20.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.org2.example.com | [10f 01-05 02:50:19.26 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 | [110 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [164 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6d52db44-4806-476d-9671-bdf9cb06eb76]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [139 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer0.org1.example.com | [14e 01-05 02:50:20.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 | [0ff 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -orderer.example.com | [100 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [101 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -peer1.org2.example.com | [165 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6d52db44-4806-476d-9671-bdf9cb06eb76, channelID: -peer1.org2.example.com | [166 01-05 02:50:21.69 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 | [167 01-05 02:50:21.69 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 | [168 01-05 02:50:21.69 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=d7b1a415-d79c-4aab-95d1-dd5bbe699ef3,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org2.example.com | [111 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [44e2249a]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [13a 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [169 01-05 02:50:21.69 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 | [14f 01-05 02:50:20.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.1.0 -orderer.example.com | [102 01-05 02:50:23.87 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 | [112 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [13b 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer1.org2.example.com | [16a 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [103 01-05 02:50:23.87 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 | [150 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3641855]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [113 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [44e2249a]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [16b 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [13c 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [104 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [151 01-05 02:50:20.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.org2.example.com | [114 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44e2249a]Move state message INIT -peer1.org2.example.com | [16c 01-05 02:50:21.69 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 | [13d 01-05 02:50:19.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [105 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [152 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3641855]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [115 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44e2249a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [16d 01-05 02:50:21.69 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 | [13e 01-05 02:50:19.94 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 | [106 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [14b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]sending state message READY -peer0.org2.example.com | [116 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [16e 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org2.example.com) -peer1.org1.example.com | [13f 01-05 02:50:19.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 | [107 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [153 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]Move state message INIT -peer0.org2.example.com | [117 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44e2249a]sending state message INIT -peer1.org2.example.com | [16f 01-05 02:50:21.69 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 | [140 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.1.0 -orderer.example.com | [108 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [170 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | [155 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [118 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44e2249a]Received message INIT from shim -peer0.org2.example.com | [119 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44e2249a]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [11a 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [11b 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [44e2249a]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer1.org1.example.com | [141 01-05 02:50:19.95 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 | [109 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [11c 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [142 01-05 02:50:19.95 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_PEER_TLS_ENABLED=true -peer0.org1.example.com | [156 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [157 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]sending state message INIT -peer0.org1.example.com | [154 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Received message READY from shim -peer0.org1.example.com | [158 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3641855]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -orderer.example.com | [10a 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [10b 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [10c 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [10d 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [10e 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [10f 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [11d 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44e2249a]Init get response status: 200 -peer0.org2.example.com | [11e 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44e2249a]Init succeeded. Sending COMPLETED -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [159 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Received message INIT from shim -peer0.org1.example.com | [15a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3641855]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [15b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [15c 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d3641855]Received INIT, initializing chaincode -peer0.org1.example.com | [15d 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Init get response status: 200 -peer0.org1.example.com | [15e 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [15f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Move state message COMPLETED -peer0.org1.example.com | [160 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3641855]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [161 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]send state message COMPLETED -peer0.org1.example.com | [162 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]Received message COMPLETED from shim -orderer.example.com | [110 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [143 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [144 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [146 01-05 02:50:19.95 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 | [147 01-05 02:50:19.95 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 | [148 01-05 02:50:19.95 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 | [149 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15dc740f]Move state message READY -peer1.org1.example.com | [14a 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [15dc740f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [163 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [164 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855-cb97-406e-b551-06cf6a753472]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [165 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d3641855-cb97-406e-b551-06cf6a753472, channelID: -peer0.org1.example.com | [166 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [171 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer1.org2.example.com | [172 01-05 02:50:21.69 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org2.example.com | [173 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -peer1.org2.example.com | [174 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer1.org2.example.com | [175 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -orderer.example.com | [111 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [11f 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44e2249a]Move state message COMPLETED -peer1.org1.example.com | [14b 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [15dc740f]Entered state ready -peer0.org1.example.com | [167 01-05 02:50:20.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.org2.example.com | [176 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [177 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer1.org2.example.com | [178 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [179 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -orderer.example.com | [112 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [14c 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:15dc740f-990e-4530-ace2-2a94fc051dee, channelID: -peer0.org2.example.com | [120 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44e2249a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [121 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44e2249a]send state message COMPLETED -peer0.org2.example.com | [122 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44e2249a]Received message COMPLETED from shim -peer0.org2.example.com | [123 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44e2249a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [124 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [44e2249a-fb4b-4286-b61c-8d9a802504f5]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [125 01-05 02:50:19.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:44e2249a-fb4b-4286-b61c-8d9a802504f5, channelID: -peer0.org2.example.com | [126 01-05 02:50:19.26 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 | [127 01-05 02:50:19.26 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 | [17a 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | [113 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [168 01-05 02:50:20.44 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=83ccafb0-273b-41e0-877a-7fa0b5747680,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org1.example.com | [169 01-05 02:50:20.44 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 | [16a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org2.example.com | [17b 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [14d 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15dc740f]sending state message READY -orderer.example.com | [114 01-05 02:50:23.87 UTC] [github.com/hyperledger/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.org1.example.com | [16b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [128 01-05 02:50:19.26 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=f21fb6fa-6386-4b2d-9179-7af73661d0ca,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [129 01-05 02:50:19.26 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 | [14e 01-05 02:50:19.95 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 | [115 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [16c 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=qscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org1.example.com | [16d 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [16e 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org1.example.com | [16f 01-05 02:50:20.44 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 | [170 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [171 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer1.org2.example.com | [17c 01-05 02:50:21.70 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 | [17d 01-05 02:50:21.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 | [17e 01-05 02:50:21.70 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 | [17f 01-05 02:50:21.70 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 | [180 01-05 02:50:21.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 | [181 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [182 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [183 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [12a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [116 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -orderer.example.com | [117 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [118 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [119 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [11a 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [11b 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 | [184 01-05 02:50:21.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 qscc:1.1.0 launch seq completed -peer0.org1.example.com | [172 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer0.org1.example.com | [173 01-05 02:50:20.44 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 | [174 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer0.org1.example.com | [175 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -peer0.org1.example.com | [177 01-05 02:50:20.44 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 | [176 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer0.org1.example.com | [178 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [185 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [12b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [12c 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Envs [CORE_CHAINCODE_ID_NAME=vscc:1.1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}] -peer0.org2.example.com | [12d 01-05 02:50:19.27 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 | [12e 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [12f 01-05 02:50:19.27 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 | [130 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +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: +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 +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 +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 +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 +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.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.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} -peer0.org2.example.com | [131 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -peer0.org2.example.com | [132 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -peer0.org2.example.com | [133 01-05 02:50:19.27 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 | [134 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -peer0.org2.example.com | [135 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -peer0.org2.example.com | [136 01-05 02:50:19.27 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 | [137 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -peer0.org2.example.com | [138 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [139 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -peer0.org2.example.com | [13a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [13b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [13c 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [13d 01-05 02:50:19.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 | [13e 01-05 02:50:19.27 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 | [13f 01-05 02:50:19.27 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 | [140 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [186 01-05 02:50:21.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... -peer1.org2.example.com | [187 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7b1a415]Move state message READY -peer1.org2.example.com | [188 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7b1a415]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [189 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d7b1a415]Entered state ready -peer1.org2.example.com | [18a 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d7b1a415-d79c-4aab-95d1-dd5bbe699ef3, channelID: -peer1.org1.example.com | [14f 01-05 02:50:19.95 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 | [179 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -orderer.example.com | [11c 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [141 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [18b 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7b1a415]sending state message READY -peer1.org2.example.com | [18c 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7b1a415]Received message READY from shim -peer1.org2.example.com | [18d 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7b1a415]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [150 01-05 02:50:19.95 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 | [17a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [17b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [17c 01-05 02:50:20.44 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 | [18e 01-05 02:50:21.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.org1.example.com | [151 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer1.org1.example.com | [152 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [15dc740f]Inside sendExecuteMessage. Message INIT -orderer.example.com | [11d 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [11e 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -orderer.example.com | [11f 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [120 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [121 01-05 02:50:23.87 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 | [18f 01-05 02:50:21.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.org1.example.com | [17d 01-05 02:50:20.44 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 | [17e 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer1.org1.example.com | [153 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [154 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [15dc740f]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [190 01-05 02:50:21.70 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 | [191 01-05 02:50:21.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: qscc:1.1.0 -peer1.org2.example.com | [192 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7b1a415]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [193 01-05 02:50:21.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 | [122 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [123 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [124 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [125 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [126 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [127 01-05 02:50:23.87 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 | [194 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7b1a415]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [145 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [142 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [128 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [17f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -peer1.org2.example.com | [195 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7b1a415]Move state message INIT -peer1.org2.example.com | [196 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7b1a415]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [155 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15dc740f]Received message READY from shim -peer0.org2.example.com | [143 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [144 01-05 02:50:19.27 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 | [145 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [146 01-05 02:50:19.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... -peer0.org2.example.com | [147 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f21fb6fa]Move state message READY -peer0.org2.example.com | [148 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f21fb6fa]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [149 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f21fb6fa]Entered state ready -peer1.org1.example.com | [156 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15dc740f]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [129 01-05 02:50:23.87 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.org2.example.com | [14a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f21fb6fa-6386-4b2d-9179-7af73661d0ca, channelID: -peer1.org2.example.com | [197 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [180 01-05 02:50:20.44 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 | [157 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15dc740f]Move state message INIT -orderer.example.com | [12a 01-05 02:50:23.87 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 | [14b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f21fb6fa]sending state message READY -peer1.org2.example.com | [198 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7b1a415]sending state message INIT -peer0.org1.example.com | [181 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | [12b 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [158 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [15dc740f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [14c 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f21fb6fa]Received message READY from shim -peer1.org2.example.com | [199 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7b1a415]Received message INIT from shim -peer0.org1.example.com | [183 01-05 02:50:20.44 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 | [159 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [12c 01-05 02:50:23.87 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 | [14d 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f21fb6fa]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [19a 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7b1a415]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [184 01-05 02:50:20.44 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 | [12d 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [14e 01-05 02:50:19.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 -orderer.example.com | [12e 01-05 02:50:23.87 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 | [185 01-05 02:50:20.44 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 | [15a 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15dc740f]sending state message INIT -peer0.org1.example.com | [186 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]Move state message READY -orderer.example.com | [12f 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [130 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [131 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [132 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [133 01-05 02:50:23.87 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 | [19b 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [19c 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d7b1a415]Received INIT, initializing chaincode -peer1.org2.example.com | [19d 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [19e 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7b1a415]Init get response status: 200 -peer1.org2.example.com | [19f 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7b1a415]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [14f 01-05 02:50:19.27 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 | [150 01-05 02:50:19.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 | [151 01-05 02:50:19.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: vscc:1.1.0 -peer0.org2.example.com | [152 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f21fb6fa]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [1a0 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7b1a415]Move state message COMPLETED -peer1.org2.example.com | [1a1 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7b1a415]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [1a2 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7b1a415]send state message COMPLETED -peer1.org2.example.com | [1a3 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7b1a415]Received message COMPLETED from shim -peer1.org2.example.com | [1a4 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7b1a415]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [15b 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15dc740f]Received message INIT from shim -peer1.org1.example.com | [15c 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15dc740f]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [134 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [135 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -orderer.example.com | [136 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -orderer.example.com | [137 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -orderer.example.com | [138 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -orderer.example.com | [139 01-05 02:50:23.87 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 | [1a5 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7b1a415-d79c-4aab-95d1-dd5bbe699ef3]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [1a6 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7b1a415-d79c-4aab-95d1-dd5bbe699ef3, channelID: -peer1.org2.example.com | [1a7 01-05 02:50:21.70 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 | [1a8 01-05 02:50:21.70 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 | [1a9 01-05 02:50:21.70 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 | [1aa 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer1.org2.example.com | [1ab 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer1.org2.example.com | [1ac 01-05 02:50:21.70 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 | [187 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1ad 01-05 02:50:21.70 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 | [15d 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [153 01-05 02:50:19.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... -orderer.example.com | [13a 01-05 02:50:23.87 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 | [188 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [83ccafb0]Entered state ready -peer1.org2.example.com | [1ae 01-05 02:50:21.70 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 | [15e 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [15dc740f]Received INIT, initializing chaincode -peer0.org2.example.com | [154 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f21fb6fa]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [189 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:83ccafb0-273b-41e0-877a-7fa0b5747680, channelID: -peer0.org1.example.com | [18a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]sending state message READY -peer0.org1.example.com | [18b 01-05 02:50:20.44 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 | [18c 01-05 02:50:20.44 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 | [1af 01-05 02:50:21.70 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 | [13b 01-05 02:50:23.87 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.org2.example.com | [155 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f21fb6fa]Move state message INIT -peer0.org2.example.com | [156 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f21fb6fa]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [157 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [158 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f21fb6fa]sending state message INIT -peer0.org2.example.com | [159 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f21fb6fa]Received message INIT from shim -peer0.org2.example.com | [15a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f21fb6fa]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [15b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [15c 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f21fb6fa]Received INIT, initializing chaincode -peer0.org2.example.com | [15d 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f21fb6fa]Init get response status: 200 -peer1.org2.example.com | [1b0 01-05 02:50:21.70 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 | [15f 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15dc740f]Init get response status: 200 -peer1.org1.example.com | [160 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15dc740f]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [161 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15dc740f]Move state message COMPLETED -peer1.org1.example.com | [162 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [15dc740f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [163 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [15dc740f]send state message COMPLETED -peer1.org1.example.com | [164 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [15dc740f]Received message COMPLETED from shim -peer1.org1.example.com | [165 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [15dc740f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [166 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [15dc740f-990e-4530-ace2-2a94fc051dee]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [1b1 01-05 02:50:21.70 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 | [1b2 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1b3 01-05 02:50:21.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1b4 01-05 02:50:21.70 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 | [1b5 01-05 02:50:21.70 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 | [18d 01-05 02:50:20.44 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 | [167 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:15dc740f-990e-4530-ace2-2a94fc051dee, channelID: -orderer.example.com | [13c 01-05 02:50:23.87 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 | [15e 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f21fb6fa]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [15f 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f21fb6fa]Move state message COMPLETED -peer0.org2.example.com | [160 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f21fb6fa]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [161 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f21fb6fa]send state message COMPLETED -peer0.org2.example.com | [162 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f21fb6fa]Received message COMPLETED from shim -peer0.org2.example.com | [163 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f21fb6fa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [164 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f21fb6fa-6386-4b2d-9179-7af73661d0ca]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [165 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f21fb6fa-6386-4b2d-9179-7af73661d0ca, channelID: -peer0.org2.example.com | [166 01-05 02:50:19.27 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 | [167 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [1b6 01-05 02:50:21.70 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 | [18e 01-05 02:50:20.44 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 | [13d 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [13e 01-05 02:50:23.87 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 | [168 01-05 02:50:19.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 | [169 01-05 02:50:19.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 -peer1.org1.example.com | [16a 01-05 02:50:19.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=9f1b24d0-3448-4eae-87e7-9b9461dd7d4f,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org1.example.com | [16b 01-05 02:50:19.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 -peer1.org1.example.com | [16c 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [16d 01-05 02:50:19.95 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [1b7 01-05 02:50:21.70 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 | [18f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [83ccafb0]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [190 01-05 02:50:20.44 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 | [191 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [83ccafb0]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [168 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=d7a4e573-3959-4ae9-80e2-ed197a2fd647,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org2.example.com | [1b8 01-05 02:50:21.70 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 | [1b9 01-05 02:50:21.70 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 | [1ba 01-05 02:50:21.70 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 | [1bb 01-05 02:50:21.70 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 | [1bc 01-05 02:50:21.70 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 | [1bd 01-05 02:50:25.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:41066 -peer1.org2.example.com | [1be 01-05 02:50:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a44a50 -orderer.example.com | [13f 01-05 02:50:23.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [182 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [169 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched -peer1.org1.example.com | [16e 01-05 02:50:19.95 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 | [1bf 01-05 02:50:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [140 01-05 02:50:23.88 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 | [16f 01-05 02:50:19.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 | [1c0 01-05 02:50:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [141 01-05 02:50:23.88 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 | [16a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org2.example.com | [16b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [16c 01-05 02:50:19.27 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 | [1c1 01-05 02:50:25.11 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 | [192 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [194 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]Move state message INIT -peer0.org1.example.com | [195 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [1c2 01-05 02:50:25.11 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 | [1c3 01-05 02:50:25.11 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 | [1c4 01-05 02:50:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219e8e60, header 0xc421a44ae0 -peer1.org2.example.com | [1c5 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org2.example.com | [1c6 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 8f8191fbc84200b28c1931032a3422541792b32335f966830e414a058c42d673 -peer1.org1.example.com | [170 01-05 02:50:19.96 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: qscc:1.1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [16d 01-05 02:50:19.27 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 | [142 01-05 02:50:23.88 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.org1.example.com | [196 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1c7 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8f8191fbc84200b28c1931032a3422541792b32335f966830e414a058c42d673 channel id: -peer0.org2.example.com | [16e 01-05 02:50:19.27 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 | [197 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]sending state message INIT -peer1.org2.example.com | [1c8 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8f8191fbc84200b28c1931032a3422541792b32335f966830e414a058c42d673 channel id: version: 1.1.0 -peer1.org2.example.com | [1c9 01-05 02:50:25.12 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=8f8191fbc84200b28c1931032a3422541792b32335f966830e414a058c42d673,syscc=true,proposal=0xc4219e8e60,canname=cscc:1.1.0 -peer1.org1.example.com | [171 01-05 02:50:19.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -orderer.example.com | [143 01-05 02:50:23.88 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 | [1ca 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org1.example.com | [193 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Received message READY from shim -peer1.org2.example.com | [1cb 01-05 02:50:25.12 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 | [16f 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -orderer.example.com | [144 01-05 02:50:23.88 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 | [172 01-05 02:50:19.97 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org1.example.com | [198 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83ccafb0]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [1cc 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org2.example.com | [170 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.1.0 -orderer.example.com | [145 01-05 02:50:23.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [1cd 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8f8191fb]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [199 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Received message INIT from shim +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +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 +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) +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) +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 -orderer.example.com | [146 01-05 02:50:23.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [1ce 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +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.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | [147 01-05 02:50:23.88 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 | [19a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83ccafb0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1cf 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [1d0 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8f8191fb]sendExecuteMsg trigger event TRANSACTION +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.org2.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 -peer0.org1.example.com | [19b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1d1 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f8191fb]Move state message TRANSACTION -orderer.example.com | [148 01-05 02:50:23.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | 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.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [1d2 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8f8191fb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [19c 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [83ccafb0]Received INIT, initializing chaincode +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 peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [1d3 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +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.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [19d 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [1d4 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f8191fb]sending state message TRANSACTION -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +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 peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [1d5 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f8191fb]Received message TRANSACTION from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [19e 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Init get response status: 200 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +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 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 | [171 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer1.org2.example.com | [1d6 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8f8191fb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [19f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [173 01-05 02:50:19.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -peer0.org2.example.com | [172 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer1.org2.example.com | [1d7 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8f8191fb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [173 01-05 02:50:19.27 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 | [1a0 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Move state message COMPLETED -peer0.org1.example.com | [1a1 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83ccafb0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [1d8 01-05 02:50:25.12 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org1.example.com | [174 01-05 02:50:19.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -peer0.org2.example.com | [174 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [1d9 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | [1a2 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]send state message COMPLETED -peer0.org2.example.com | [175 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -peer1.org1.example.com | [175 01-05 02:50:19.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -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= -peer1.org2.example.com | [1da 01-05 02:50:25.13 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 | [1a3 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]Received message COMPLETED from shim -peer1.org1.example.com | [176 01-05 02:50:19.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -peer0.org2.example.com | [177 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [1db 01-05 02:50:25.13 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 | [1a4 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [177 01-05 02:50:19.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -orderer.example.com | [149 01-05 02:50:23.88 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 0xc420138128 gate 1515120623881479200 evaluation starts -peer0.org1.example.com | [1a5 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0-273b-41e0-877a-7fa0b5747680]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [176 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [178 01-05 02:50:19.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | [14a 01-05 02:50:23.89 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 0xc420138128 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [1dc 01-05 02:50:25.13 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 | [1a6 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:83ccafb0-273b-41e0-877a-7fa0b5747680, channelID: -peer0.org1.example.com | [1a7 01-05 02:50:20.44 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 | [1a8 01-05 02:50:20.44 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 | [1a9 01-05 02:50:20.44 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 | [1aa 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer0.org1.example.com | [1ab 01-05 02:50:20.44 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 | [178 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [179 01-05 02:50:19.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -peer1.org2.example.com | [1dd 01-05 02:50:25.13 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 | [1de 01-05 02:50:25.13 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 | [1df 01-05 02:50:25.13 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 | [1e0 01-05 02:50:25.13 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 | [1ac 01-05 02:50:20.45 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer0.org1.example.com | [1ad 01-05 02:50:20.45 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 | [1ae 01-05 02:50:20.45 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-05 02:50:20.45 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 | [1b0 01-05 02:50:20.45 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 | [1b1 01-05 02:50:20.45 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 | [1b2 01-05 02:50:20.45 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 | [17a 01-05 02:50:19.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | [14b 01-05 02:50:23.89 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 0xc420138128 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [1e1 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org2.example.com | [1e2 01-05 02:50:25.13 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 | [1e3 01-05 02:50:25.13 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 | [1e4 01-05 02:50:25.13 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)(0xc421b19780)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org2.example.com | [1e5 01-05 02:50:25.13 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 | [1e6 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer1.org2.example.com | [1e7 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer0.org2.example.com | [179 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -peer0.org1.example.com | [1b3 01-05 02:50:20.45 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 | [14c 01-05 02:50:23.89 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 | [1e8 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer1.org1.example.com | [17b 01-05 02:50:19.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -orderer.example.com | [14d 01-05 02:50:23.89 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 0xc420138128 principal matched by identity 0 -peer0.org1.example.com | [1b4 01-05 02:50:20.45 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 | [1e9 01-05 02:50:25.13 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 | [17a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [17b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [17c 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [17d 01-05 02:50:19.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 | [17e 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer0.org2.example.com | [17f 01-05 02:50:19.27 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 | [180 01-05 02:50:19.27 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 | [181 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [182 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [1b5 01-05 02:50:20.45 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 | [1b6 01-05 02:50:20.45 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 | [1b7 01-05 02:50:20.45 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 | [1b8 01-05 02:50:20.45 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 | [1b9 01-05 02:50:20.45 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 | [1ba 01-05 02:50:20.45 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 | [1bb 01-05 02:50:20.45 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 | [1bc 01-05 02:50:20.45 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 | [1bd 01-05 02:50:24.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54456 -peer0.org1.example.com | [1be 01-05 02:50:24.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c65e90 -peer0.org1.example.com | [1bf 01-05 02:50:24.44 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 | [1c0 01-05 02:50:24.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [1c1 01-05 02:50:24.44 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 | [1c2 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [1c3 01-05 02:50:24.45 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 | [1c4 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ca22d0, header 0xc421c65f20 -peer0.org1.example.com | [1c5 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [1c6 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294 -peer0.org1.example.com | [1c7 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294 channel id: -peer0.org1.example.com | [1c8 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294 channel id: version: 1.1.0 -peer0.org1.example.com | [1c9 01-05 02:50:24.45 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=871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294,syscc=true,proposal=0xc421ca22d0,canname=cscc:1.1.0 -peer0.org1.example.com | [1ca 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org1.example.com | [1cb 01-05 02:50:24.45 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 | [1cc 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org1.example.com | [17c 01-05 02:50:19.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [1ea 01-05 02:50:25.13 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 | [1eb 01-05 02:50:25.13 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 | [1ec 01-05 02:50:25.13 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 | [1ed 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org2.example.com | [1ee 01-05 02:50:25.13 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 | [1ef 01-05 02:50:25.13 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 | [183 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [17d 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | [14e 01-05 02:50:23.89 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 b0 25 59 62 0a 69 16 2d 1a 73 54 d6 c2 9c c1 40 |.%Yb.i.-.sT....@| -peer1.org2.example.com | [1f0 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 00000010 c8 cb 8f 54 00 f6 9c 7a b2 af 14 fd d9 59 88 7e |...T...z.....Y.~| -peer0.org2.example.com | [184 01-05 02:50:19.27 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 | [1cd 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [871adebd]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [14f 01-05 02:50:23.89 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 90 62 2c d6 17 93 c8 73 73 bc 59 |0E.!..b,....ss.Y| -peer1.org1.example.com | [17e 01-05 02:50:20.00 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 | [185 01-05 02:50:19.27 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 | [1ce 01-05 02:50:24.45 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 | [1f1 01-05 02:50:25.13 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 | 00000010 29 40 e1 c8 2a b7 2b 92 f4 d1 46 46 e4 d4 d5 d0 |)@..*.+...FF....| -peer1.org1.example.com | [17f 01-05 02:50:20.00 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 | [186 01-05 02:50:19.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... -peer0.org1.example.com | [1cf 01-05 02:50:24.45 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 | 00000020 80 b1 59 cb 7c 02 20 51 ae 2e 20 9e 0b b9 0f 35 |..Y.|. Q.. ....5| -peer1.org1.example.com | [180 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -peer0.org2.example.com | [187 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7a4e573]Move state message READY -peer1.org2.example.com | [1f2 01-05 02:50:25.13 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 | [1d0 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [871adebd]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 00000030 71 a6 31 79 ef d0 b4 8e db 72 a0 35 fe 8f e4 9e |q.1y.....r.5....| -peer1.org1.example.com | [181 01-05 02:50:20.00 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-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7a4e573]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [1d1 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [871adebd]Move state message TRANSACTION -orderer.example.com | 00000040 c9 15 7c c8 d6 72 4e |..|..rN| -peer1.org2.example.com | [1f3 01-05 02:50:25.13 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.org1.example.com | [1d2 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [871adebd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [182 01-05 02:50:20.00 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 | [150 01-05 02:50:23.89 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 0xc420138128 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [189 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d7a4e573]Entered state ready -peer1.org2.example.com | [1f4 01-05 02:50:25.13 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 -orderer.example.com | [151 01-05 02:50:23.89 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 0xc420138128 gate 1515120623881479200 evaluation succeeds -peer0.org1.example.com | [1d3 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [183 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed -peer0.org2.example.com | [18a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d7a4e573-3959-4ae9-80e2-ed197a2fd647, channelID: -peer1.org2.example.com | [1f5 01-05 02:50:25.13 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 | [152 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [184 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [18b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7a4e573]sending state message READY -peer1.org2.example.com | [1f6 01-05 02:50:25.13 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 | [1d4 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [871adebd]sending state message TRANSACTION -orderer.example.com | [153 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [18c 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7a4e573]Received message READY from shim -peer0.org1.example.com | [1d5 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]Received message TRANSACTION from shim -orderer.example.com | [154 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -peer1.org2.example.com | [1f7 01-05 02:50:25.13 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 | [185 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [1d6 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [871adebd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [18d 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7a4e573]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | [155 01-05 02:50:23.89 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.org2.example.com | [1f8 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [186 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f1b24d0]Move state message READY -peer0.org1.example.com | [1d7 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [871adebd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [156 01-05 02:50:23.89 UTC] [github.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 | [1f9 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [18e 01-05 02:50:19.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 -peer1.org1.example.com | [187 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9f1b24d0]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [1d8 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | [157 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [158 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [159 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [15a 01-05 02:50:23.89 UTC] [github.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 | [1fa 01-05 02:50:25.13 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 | [1fb 01-05 02:50:25.13 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 | [1fc 01-05 02:50:25.13 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.org2.example.com | [1fd 01-05 02:50:25.13 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 | [18f 01-05 02:50:19.27 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 | [188 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9f1b24d0]Entered state ready -peer1.org1.example.com | [189 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9f1b24d0-3448-4eae-87e7-9b9461dd7d4f, channelID: -peer1.org1.example.com | [18a 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f1b24d0]sending state message READY -peer1.org1.example.com | [18b 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [18c 01-05 02:50:20.00 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 | [1d9 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [190 01-05 02:50:19.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 | [191 01-05 02:50:19.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: qscc:1.1.0 -peer0.org2.example.com | [192 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7a4e573]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [193 01-05 02:50:19.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... -peer1.org2.example.com | [1fe 01-05 02:50:25.13 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 | [18d 01-05 02:50:20.00 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 | [1da 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [1db 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer0.org1.example.com | [1dc 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer0.org1.example.com | [1dd 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer0.org2.example.com | [194 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7a4e573]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [195 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7a4e573]Move state message INIT -peer0.org2.example.com | [196 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7a4e573]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [197 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [198 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7a4e573]sending state message INIT -peer0.org2.example.com | [199 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7a4e573]Received message INIT from shim -peer0.org2.example.com | [19a 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7a4e573]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [19b 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [19c 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d7a4e573]Received INIT, initializing chaincode -peer0.org2.example.com | [19d 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [1ff 01-05 02:50:25.13 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [1de 01-05 02:50:24.46 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 | [1df 01-05 02:50:24.46 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 | [18e 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer1.org1.example.com | [18f 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9f1b24d0]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [190 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [191 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9f1b24d0]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [192 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [193 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [194 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [196 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f1b24d0]Move state message INIT -peer1.org1.example.com | [197 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9f1b24d0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [198 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [199 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f1b24d0]sending state message INIT -peer1.org1.example.com | [195 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f1b24d0]Received message READY from shim -peer1.org1.example.com | [19a 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f1b24d0]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [19b 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f1b24d0]Received message INIT from shim -peer1.org1.example.com | [19c 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f1b24d0]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [19d 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [19e 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9f1b24d0]Received INIT, initializing chaincode -peer1.org1.example.com | [19f 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [1a0 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f1b24d0]Init get response status: 200 -peer1.org1.example.com | [1a1 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f1b24d0]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1a2 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f1b24d0]Move state message COMPLETED -peer1.org1.example.com | [1a3 01-05 02:50:20.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f1b24d0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [1a4 01-05 02:50:20.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f1b24d0]send state message COMPLETED -peer1.org1.example.com | [1a5 01-05 02:50:20.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f1b24d0]Received message COMPLETED from shim -peer1.org1.example.com | [1a6 01-05 02:50:20.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9f1b24d0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [200 01-05 02:50:25.13 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 | [201 01-05 02:50:25.13 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 | [1e0 01-05 02:50:24.46 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 | [1a7 01-05 02:50:20.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9f1b24d0-3448-4eae-87e7-9b9461dd7d4f]HandleMessage- COMPLETED. Notify -orderer.example.com | [15b 01-05 02:50:23.89 UTC] [github.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 | [19e 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7a4e573]Init get response status: 200 -peer0.org2.example.com | [19f 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7a4e573]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [202 01-05 02:50:25.13 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 | [1e1 01-05 02:50:24.46 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 | [1e2 01-05 02:50:24.46 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 | [1a0 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7a4e573]Move state message COMPLETED -peer1.org2.example.com | [203 01-05 02:50:25.13 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 | [15c 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [1a8 01-05 02:50:20.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9f1b24d0-3448-4eae-87e7-9b9461dd7d4f, channelID: -peer0.org1.example.com | [1e3 01-05 02:50:24.46 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 | [15d 01-05 02:50:23.89 UTC] [github.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 | [204 01-05 02:50:25.13 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 | [1a1 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7a4e573]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [1a9 01-05 02:50:20.01 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 | [1e4 01-05 02:50:24.46 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)(0xc421cf7120)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | [15e 01-05 02:50:23.89 UTC] [github.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 | [205 01-05 02:50:25.13 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 | [1a2 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7a4e573]send state message COMPLETED -peer1.org1.example.com | [1aa 01-05 02:50:20.01 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [1e5 01-05 02:50:24.46 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 | [206 01-05 02:50:25.13 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 | [1a3 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7a4e573]Received message COMPLETED from shim -peer1.org1.example.com | [1ab 01-05 02:50:20.01 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 | [1e6 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -orderer.example.com | [15f 01-05 02:50:23.89 UTC] [github.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 | [207 01-05 02:50:25.13 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 | [1a4 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7a4e573]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1ac 01-05 02:50:20.01 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer0.org1.example.com | [1e7 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -orderer.example.com | [160 01-05 02:50:23.89 UTC] [github.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 | [208 01-05 02:50:25.13 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 | [1a5 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d7a4e573-3959-4ae9-80e2-ed197a2fd647]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [1ad 01-05 02:50:20.02 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 | [1e8 01-05 02:50:24.46 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 | [209 01-05 02:50:25.13 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 | [1e9 01-05 02:50:24.46 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 | [1a6 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d7a4e573-3959-4ae9-80e2-ed197a2fd647, channelID: -peer1.org1.example.com | [1ae 01-05 02:50:20.02 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 | [161 01-05 02:50:23.89 UTC] [github.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 | [1a7 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [20a 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [1ea 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [1af 01-05 02:50:20.03 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 | [20b 01-05 02:50:25.14 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 | [1a8 01-05 02:50:19.27 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 | [162 01-05 02:50:23.89 UTC] [github.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 | [1eb 01-05 02:50:24.46 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 | [1a9 01-05 02:50:19.27 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 | [20c 01-05 02:50:25.14 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 | [1b0 01-05 02:50:20.03 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 | [163 01-05 02:50:23.89 UTC] [github.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 | [1aa 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -peer0.org1.example.com | [1ec 01-05 02:50:24.46 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 | [20d 01-05 02:50:25.14 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 | [1ab 01-05 02:50:19.27 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -orderer.example.com | [164 01-05 02:50:23.89 UTC] [github.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 | [20e 01-05 02:50:25.14 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 | [1b1 01-05 02:50:20.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.org1.example.com | [1ed 01-05 02:50:24.46 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 | [1ac 01-05 02:50:19.28 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 | [165 01-05 02:50:23.89 UTC] [github.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 | [1b2 01-05 02:50:20.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' -peer1.org2.example.com | [20f 01-05 02:50:25.14 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 | [1ee 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [1ad 01-05 02:50:19.28 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 | [166 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [1ef 01-05 02:50:24.46 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 | [210 01-05 02:50:25.14 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 | [1b3 01-05 02:50:20.03 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 | [167 01-05 02:50:23.89 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 | [1f0 01-05 02:50:24.46 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 | [1b4 01-05 02:50:20.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' -orderer.example.com | [168 01-05 02:50:23.89 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 | [1ae 01-05 02:50:19.28 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 | [211 01-05 02:50:25.14 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 | [1b5 01-05 02:50:20.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' -orderer.example.com | [169 01-05 02:50:23.89 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 | [1af 01-05 02:50:19.28 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 | [212 01-05 02:50:25.14 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 | [1f1 01-05 02:50:24.46 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 | [1b6 01-05 02:50:20.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.org2.example.com | [213 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [16a 01-05 02:50:23.89 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 | [1b0 01-05 02:50:19.28 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 | [1f2 01-05 02:50:24.46 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 | [1b7 01-05 02:50:20.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org2.example.com | [214 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1b1 01-05 02:50:19.28 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 | [16b 01-05 02:50:23.89 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 | [1b8 01-05 02:50:20.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.org1.example.com | [1f3 01-05 02:50:24.46 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 | [215 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1b2 01-05 02:50:19.28 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 | [1b9 01-05 02:50:20.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' -orderer.example.com | [16c 01-05 02:50:23.89 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 | [1f4 01-05 02:50:24.46 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 | [216 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [1f5 01-05 02:50:24.46 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 | [1b3 01-05 02:50:19.28 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 | [1ba 01-05 02:50:20.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1f6 01-05 02:50:24.46 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 | [217 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1b4 01-05 02:50:19.28 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 | [16d 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608EFCFBBD20522...A251ADEF21C4802241CDEDF56EFD0CBB -peer1.org1.example.com | [1bb 01-05 02:50:20.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' -peer0.org1.example.com | [1f7 01-05 02:50:24.46 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 | [1b5 01-05 02:50:19.28 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 | [16e 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: EFC2C0ED3E9E76C0E7FD804BBE49C49D06D257309484AC87BEA4C1E9FDF0960F -peer1.org2.example.com | [218 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1f8 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [1bc 01-05 02:50:20.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' -peer0.org2.example.com | [1b6 01-05 02:50:19.28 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer1.org2.example.com | [219 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [1f9 01-05 02:50:24.46 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 | [1bd 01-05 02:50:20.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' -peer0.org2.example.com | [1b7 01-05 02:50:19.28 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 | [16f 01-05 02:50:23.89 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 | [1fa 01-05 02:50:24.46 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.org1.example.com | [1be 01-05 02:50:20.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.org2.example.com | [1b8 01-05 02:50:19.28 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 | [1fb 01-05 02:50:24.46 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 | [21a 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [1fc 01-05 02:50:24.46 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 | [1bf 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36404 -orderer.example.com | [170 01-05 02:50:23.89 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 | [21b 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1b9 01-05 02:50:19.28 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 | [1fd 01-05 02:50:24.46 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 | [21c 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1c0 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4203ab470 -orderer.example.com | [171 01-05 02:50:23.89 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 | [1fe 01-05 02:50:24.46 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 | [1ba 01-05 02:50:19.28 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 | [21d 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [1ff 01-05 02:50:24.46 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 | [1c1 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [172 01-05 02:50:23.89 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 | [200 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [1bb 01-05 02:50:19.28 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 | [21e 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [201 01-05 02:50:24.46 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 | [202 01-05 02:50:24.46 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 | [203 01-05 02:50:24.46 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 | [1c2 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [1bc 01-05 02:50:19.28 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 | [204 01-05 02:50:24.47 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 | [173 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608EFCFBBD20522...3F423143B96216E7F163254BFF0B4EBE -peer1.org2.example.com | [21f 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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.org1.example.com | [1c3 01-05 02:50:24.67 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 | [205 01-05 02:50:24.47 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 | [174 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: C110CB5A51EC2C66DC9D34EF2ED53D5A7F4F2C752E8EED19293FB6C6023690D8 -peer0.org2.example.com | [1bd 01-05 02:50:24.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:46730 -peer1.org2.example.com | [220 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1c4 01-05 02:50:24.67 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 | [206 01-05 02:50:24.47 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 | [175 01-05 02:50:23.89 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 | [1be 01-05 02:50:24.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421aea9f0 -peer1.org2.example.com | [221 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1c5 01-05 02:50:24.67 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 | [1bf 01-05 02:50:24.89 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 | [207 01-05 02:50:24.47 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 | [176 01-05 02:50:23.89 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 | [1c0 01-05 02:50:24.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [1c6 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202b4e60, header 0xc4203ab500 -peer0.org1.example.com | [208 01-05 02:50:24.47 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 | [222 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [177 01-05 02:50:23.89 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 | [1c1 01-05 02:50:24.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} -peer1.org2.example.com | [223 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1c7 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [209 01-05 02:50:24.47 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 | [1c2 01-05 02:50:24.89 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 | [224 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [178 01-05 02:50:23.89 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 | [1c8 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 23bb63b8d9fa679d6507fe7c59c345a357798a007191d0f80348d601c023e71f -peer0.org2.example.com | [1c3 01-05 02:50:24.89 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 | [20a 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [225 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1c4 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a58fa0, header 0xc421aeaa80 -peer0.org1.example.com | [20b 01-05 02:50:24.47 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 | [1c9 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 23bb63b8d9fa679d6507fe7c59c345a357798a007191d0f80348d601c023e71f channel id: -peer0.org2.example.com | [1c5 01-05 02:50:24.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:"cscc" -peer1.org2.example.com | [226 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [179 01-05 02:50:23.89 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 | [1c6 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: a06c0544579039d2d01eb5441731c45c2f9b18f21c9fe64c6635c8b2cdfc7ce8 -peer0.org1.example.com | [20c 01-05 02:50:24.47 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 | [1ca 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 23bb63b8d9fa679d6507fe7c59c345a357798a007191d0f80348d601c023e71f channel id: version: 1.1.0 -peer0.org2.example.com | [1c7 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: a06c0544579039d2d01eb5441731c45c2f9b18f21c9fe64c6635c8b2cdfc7ce8 channel id: -orderer.example.com | [17a 01-05 02:50:23.89 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 | [227 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [20d 01-05 02:50:24.47 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 | [1c8 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a06c0544579039d2d01eb5441731c45c2f9b18f21c9fe64c6635c8b2cdfc7ce8 channel id: version: 1.1.0 -peer1.org1.example.com | [1cb 01-05 02:50:24.67 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=23bb63b8d9fa679d6507fe7c59c345a357798a007191d0f80348d601c023e71f,syscc=true,proposal=0xc4202b4e60,canname=cscc:1.1.0 -orderer.example.com | [17b 01-05 02:50:23.89 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 | [20e 01-05 02:50:24.47 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 | [1c9 01-05 02:50:24.90 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=a06c0544579039d2d01eb5441731c45c2f9b18f21c9fe64c6635c8b2cdfc7ce8,syscc=true,proposal=0xc421a58fa0,canname=cscc:1.1.0 -peer1.org2.example.com | [228 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [1cc 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org2.example.com | [1ca 01-05 02:50:24.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) : cscc:1.1.0 -peer0.org1.example.com | [20f 01-05 02:50:24.47 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [1cb 01-05 02:50:24.90 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 | [229 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [210 01-05 02:50:24.47 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 | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [1cc 01-05 02:50:24.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: cscc:1.1.0 -peer1.org1.example.com | [1cd 01-05 02:50:24.67 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 | [22a 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1cd 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a06c0544]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [211 01-05 02:50:24.47 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 | [1ce 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org2.example.com | [1ce 01-05 02:50:24.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... -peer0.org1.example.com | [212 01-05 02:50:24.47 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 | [213 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [214 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [215 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [216 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22b 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22c 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1cf 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23bb63b8]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -peer0.org1.example.com | [217 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1cf 01-05 02:50:24.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... -peer0.org2.example.com | [1d0 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a06c0544]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [1d1 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a06c0544]Move state message TRANSACTION -peer0.org2.example.com | [1d2 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a06c0544]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [1d3 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [22d 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1d0 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [218 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [1d4 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a06c0544]sending state message TRANSACTION -peer1.org2.example.com | [22e 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1d1 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [219 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer1.org1.example.com | [1d2 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23bb63b8]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [1d5 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a06c0544]Received message TRANSACTION from shim -peer0.org1.example.com | [21a 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [22f 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1d3 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23bb63b8]Move state message TRANSACTION -peer0.org1.example.com | [21b 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1d4 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [23bb63b8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [230 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -peer0.org1.example.com | [21c 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -peer1.org2.example.com | [231 01-05 02:50:25.14 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [21d 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1d6 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a06c0544]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [1d5 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1d7 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a06c0544]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [21e 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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.org1.example.com | [1d6 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23bb63b8]sending state message TRANSACTION -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -peer0.org2.example.com | [1d8 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org1.example.com | [1d7 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23bb63b8]Received message TRANSACTION from shim -peer1.org2.example.com | [232 01-05 02:50:25.14 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 | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer0.org1.example.com | [21f 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1d8 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23bb63b8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [1d9 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [233 01-05 02:50:25.15 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 | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer0.org1.example.com | [220 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1da 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org1.example.com | [1d9 01-05 02:50:24.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [23bb63b8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [234 01-05 02:50:25.15 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 | -----END CERTIFICATE----- -peer1.org1.example.com | [1da 01-05 02:50:24.68 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org1.example.com | [221 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [235 01-05 02:50:25.15 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 | [1db 01-05 02:50:24.90 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -orderer.example.com | [17c 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138590 gate 1515120623898642500 evaluation starts -peer1.org1.example.com | [1db 01-05 02:50:24.68 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [236 01-05 02:50:25.15 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 | [1dc 01-05 02:50:24.90 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 -orderer.example.com | [17d 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [222 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [237 01-05 02:50:25.15 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 | [1dc 01-05 02:50:24.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org2.example.com | [1dd 01-05 02:50:24.90 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 | [1de 01-05 02:50:24.91 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 | [223 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [238 01-05 02:50:25.15 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 | [1dd 01-05 02:50:24.68 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 | [1de 01-05 02:50:24.68 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 | [1df 01-05 02:50:24.68 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 | [1e0 01-05 02:50:24.68 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 | [1df 01-05 02:50:24.91 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 | [1e0 01-05 02:50:24.91 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 | [239 01-05 02:50:25.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [1e1 01-05 02:50:24.68 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 | [224 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [23a 01-05 02:50:25.15 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 | [17e 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [17f 01-05 02:50:23.89 UTC] [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 | [1e2 01-05 02:50:24.68 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 | [1e3 01-05 02:50:24.68 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 | [1e4 01-05 02:50:24.68 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 | [1e5 01-05 02:50:24.68 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 | [1e6 01-05 02:50:24.68 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)(0xc42185ea60)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [1e7 01-05 02:50:24.69 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 | [225 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1e8 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer0.org2.example.com | [1e1 01-05 02:50:24.91 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 | [180 01-05 02:50:23.89 UTC] [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 | [181 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 principal matched by identity 0 -peer1.org2.example.com | [23b 01-05 02:50:25.15 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 | [1e9 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer0.org2.example.com | [1e2 01-05 02:50:24.91 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 | [226 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [182 01-05 02:50:23.90 UTC] [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 c1 10 cb 5a 51 ec 2c 66 dc 9d 34 ef 2e d5 3d 5a |...ZQ.,f..4...=Z| -peer1.org2.example.com | [23c 01-05 02:50:25.15 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 | [1ea 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -orderer.example.com | 00000010 7f 4f 2c 75 2e 8e ed 19 29 3f b6 c6 02 36 90 d8 |.O,u....)?...6..| -peer1.org2.example.com | [23d 01-05 02:50:25.15 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 | [1e3 01-05 02:50:24.91 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 | [227 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [228 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [1eb 01-05 02:50:24.69 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 | [183 01-05 02:50:23.90 UTC] [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 7b cb 49 5c fc ae f4 e1 7e 45 37 be |0D. {.I\....~E7.| -peer1.org2.example.com | [23e 01-05 02:50:25.15 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 | [1e4 01-05 02:50:24.91 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)(0xc421a319a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org1.example.com | [229 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | 00000010 87 d7 f3 26 db bb 67 6b 00 cb a5 93 34 ec 19 92 |...&..gk....4...| -peer1.org2.example.com | [23f 01-05 02:50:25.15 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 | [1e5 01-05 02:50:24.91 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 | [1ec 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [1ed 01-05 02:50:24.69 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 | [1ee 01-05 02:50:24.69 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 | [1ef 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org1.example.com | [1f0 01-05 02:50:24.69 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 | [1f1 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [1f2 01-05 02:50:24.69 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 | [1e6 01-05 02:50:24.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer1.org2.example.com | [240 01-05 02:50:25.15 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 | [1f3 01-05 02:50:24.69 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 | [22a 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 00000020 57 3d 44 49 02 20 42 92 70 b4 9e 99 03 e7 66 9b |W=DI. B.p.....f.| -peer0.org2.example.com | [1e7 01-05 02:50:24.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer1.org2.example.com | [241 01-05 02:50:25.15 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 | [242 01-05 02:50:25.15 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{0x4f, 0x63, 0xe, 0x77, 0x36, 0xb7, 0xf3, 0x1b, 0xd0, 0x22, 0x8d, 0xe5, 0x9e, 0x49, 0x5f, 0x9d, 0x34, 0x7b, 0x44, 0x65, 0x7b, 0xe3, 0xc5, 0xfc, 0x3a, 0x1a, 0x4e, 0x51, 0x55, 0x39, 0xc6, 0xd3} txOffsets= -peer0.org1.example.com | [22b 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | 00000030 02 f2 71 af 0c ad ec a6 94 7a c1 be 85 55 33 ff |..q......z...U3.| -peer0.org2.example.com | [1e8 01-05 02:50:24.91 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 | [1e9 01-05 02:50:24.91 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 | [1ea 01-05 02:50:24.91 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 | [1eb 01-05 02:50:24.91 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 | [1ec 01-05 02:50:24.91 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 | txId= locPointer=offset=38, bytesLength=12078 -peer1.org2.example.com | ] -peer1.org2.example.com | [243 01-05 02:50:25.15 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.org1.example.com | [1f4 01-05 02:50:24.69 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 | [22c 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22d 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [22e 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22f 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1ed 01-05 02:50:24.91 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 | [1ee 01-05 02:50:24.91 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 | [1f5 01-05 02:50:24.69 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 | [244 01-05 02:50:25.15 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 -peer1.org2.example.com | [245 01-05 02:50:25.16 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.org2.example.com | [246 01-05 02:50:25.16 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 | [247 01-05 02:50:25.16 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 | [248 01-05 02:50:25.16 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 | [249 01-05 02:50:25.16 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 | [24a 01-05 02:50:25.16 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 | [24b 01-05 02:50:25.16 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-05 02:50:25.16 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 | [24d 01-05 02:50:25.16 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 | [24e 01-05 02:50:25.16 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 | [24f 01-05 02:50:25.16 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 | [250 01-05 02:50:25.16 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 | [251 01-05 02:50:25.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org2.example.com | [252 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [230 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [1ef 01-05 02:50:24.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [1f6 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [1f7 01-05 02:50:24.69 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 | [1f8 01-05 02:50:24.69 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 | [1f9 01-05 02:50:24.69 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 | [1fa 01-05 02:50:24.69 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 | [253 01-05 02:50:25.17 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 = [fe8967a4-8890-4773-98a6-875b6019c883] -peer1.org2.example.com | [254 01-05 02:50:25.17 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 | [255 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [fe8967a4-8890-4773-98a6-875b6019c883] -peer1.org2.example.com | [256 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [257 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [258 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [259 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [231 01-05 02:50:24.47 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 | [232 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [1f0 01-05 02:50:24.91 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 | [25a 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [25b 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [25c 01-05 02:50:25.17 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 | [25d 01-05 02:50:25.17 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 | [25e 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [25f 01-05 02:50:25.17 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 | [260 01-05 02:50:25.17 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 | [233 01-05 02:50:24.47 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 | [1fb 01-05 02:50:24.69 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 | 00000040 58 ad af ea 00 96 |X.....| -peer1.org2.example.com | [261 01-05 02:50:25.17 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 | [262 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [263 01-05 02:50:25.17 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 | [264 01-05 02:50:25.17 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 | [265 01-05 02:50:25.17 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 | [266 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [267 01-05 02:50:25.17 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 | [1f1 01-05 02:50:24.91 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 | [234 01-05 02:50:24.47 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 | [1fc 01-05 02:50:24.69 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 | [184 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [268 01-05 02:50:25.17 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 | [1f2 01-05 02:50:24.91 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 | [235 01-05 02:50:24.47 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 | [1fd 01-05 02:50:24.69 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 | [185 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138590 gate 1515120623898642500 evaluation succeeds -peer1.org2.example.com | [269 01-05 02:50:25.17 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 | [26a 01-05 02:50:25.17 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 | [1f3 01-05 02:50:24.91 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.org1.example.com | [236 01-05 02:50:24.47 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 | [186 01-05 02:50:23.90 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 | [1fe 01-05 02:50:24.69 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 | [1f4 01-05 02:50:24.91 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 | [26b 01-05 02:50:25.17 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 | [187 01-05 02:50:23.90 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 | [237 01-05 02:50:24.48 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 | [1ff 01-05 02:50:24.69 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 | [1f5 01-05 02:50:24.91 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 | [26c 01-05 02:50:25.17 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 | [188 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -peer0.org1.example.com | [238 01-05 02:50:24.48 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 | [200 01-05 02:50:24.69 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 | [1f6 01-05 02:50:24.91 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 | [26d 01-05 02:50:25.17 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 | [239 01-05 02:50:24.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [201 01-05 02:50:24.69 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 | [189 01-05 02:50:23.90 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 | [1f7 01-05 02:50:24.91 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 | [26e 01-05 02:50:25.17 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 | [23a 01-05 02:50:24.48 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 | [202 01-05 02:50:24.69 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 | [18a 01-05 02:50:23.90 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 | [1f8 01-05 02:50:24.91 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 | [1f9 01-05 02:50:24.91 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 | [26f 01-05 02:50:25.17 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 | [203 01-05 02:50:24.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [18b 01-05 02:50:23.90 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 | [23b 01-05 02:50:24.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [1fa 01-05 02:50:24.91 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 | [1fb 01-05 02:50:24.91 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 | [1fc 01-05 02:50:24.91 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 | [1fd 01-05 02:50:24.91 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 | [1fe 01-05 02:50:24.91 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 | [1ff 01-05 02:50:24.91 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 | [200 01-05 02:50:24.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [201 01-05 02:50:24.91 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 | [202 01-05 02:50:24.91 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 | [203 01-05 02:50:24.91 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 | [204 01-05 02:50:24.91 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 | [205 01-05 02:50:24.91 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 | [206 01-05 02:50:24.91 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 | [204 01-05 02:50:24.69 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 | [270 01-05 02:50:25.17 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 | [271 01-05 02:50:25.17 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 | [272 01-05 02:50:25.17 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 | [273 01-05 02:50:25.17 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 | [274 01-05 02:50:25.17 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 | [275 01-05 02:50:25.17 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 | [23c 01-05 02:50:24.48 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 | [205 01-05 02:50:24.69 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-05 02:50:24.69 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-05 02:50:24.69 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 | [208 01-05 02:50:24.69 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 | [209 01-05 02:50:24.69 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.org2.example.com | [276 01-05 02:50:25.17 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 | [207 01-05 02:50:24.91 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 | [23d 01-05 02:50:24.48 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 | [208 01-05 02:50:24.91 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 | [20a 01-05 02:50:24.70 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.org1.example.com | [20b 01-05 02:50:24.70 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 | [20c 01-05 02:50:24.70 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 | [20d 01-05 02:50:24.70 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 | [20e 01-05 02:50:24.70 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 | [277 01-05 02:50:25.17 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 | [23e 01-05 02:50:24.48 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 | [209 01-05 02:50:24.92 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 | [20a 01-05 02:50:24.92 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 | [20b 01-05 02:50:24.92 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 | [20c 01-05 02:50:24.92 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 | [278 01-05 02:50:25.17 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 | [20f 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [23f 01-05 02:50:24.48 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 | [20d 01-05 02:50:24.92 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 | [20e 01-05 02:50:24.92 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 | [20f 01-05 02:50:24.92 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 | [210 01-05 02:50:24.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [211 01-05 02:50:24.92 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 | [279 01-05 02:50:25.17 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 | [27a 01-05 02:50:25.17 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 | [27b 01-05 02:50:25.17 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 | [27c 01-05 02:50:25.17 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 | [27d 01-05 02:50:25.17 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 | [27e 01-05 02:50:25.17 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 | [210 01-05 02:50:24.70 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 | [18c 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [18d 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [18e 01-05 02:50:23.90 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 | [212 01-05 02:50:24.92 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 | [211 01-05 02:50:24.70 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 | [212 01-05 02:50:24.70 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 | [27f 01-05 02:50:25.17 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 | [18f 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [190 01-05 02:50:23.90 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 -orderer.example.com | [191 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [192 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [280 01-05 02:50:25.17 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 | [281 01-05 02:50:25.17 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 | [282 01-05 02:50:25.17 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 | [283 01-05 02:50:25.17 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 | [284 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [285 01-05 02:50:25.17 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 | [286 01-05 02:50:25.17 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 | [213 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [240 01-05 02:50:24.48 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 | [213 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [287 01-05 02:50:25.17 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 | [193 01-05 02:50:23.90 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 | [241 01-05 02:50:24.48 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 | [214 01-05 02:50:24.70 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 | [214 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [215 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [216 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [288 01-05 02:50:25.17 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 | [194 01-05 02:50:23.90 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 | [215 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [242 01-05 02:50:24.48 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{0x4f, 0x63, 0xe, 0x77, 0x36, 0xb7, 0xf3, 0x1b, 0xd0, 0x22, 0x8d, 0xe5, 0x9e, 0x49, 0x5f, 0x9d, 0x34, 0x7b, 0x44, 0x65, 0x7b, 0xe3, 0xc5, 0xfc, 0x3a, 0x1a, 0x4e, 0x51, 0x55, 0x39, 0xc6, 0xd3} txOffsets= -peer0.org2.example.com | [217 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [289 01-05 02:50:25.17 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 | [195 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [216 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | txId= locPointer=offset=38, bytesLength=12078 -peer0.org2.example.com | [218 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [28a 01-05 02:50:25.17 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 | [196 01-05 02:50:23.90 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 | ] -peer1.org1.example.com | [217 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [219 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [197 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [218 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [28b 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [243 01-05 02:50:24.48 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 | [21a 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [198 01-05 02:50:23.90 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 | [28c 01-05 02:50:25.17 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 | [219 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [244 01-05 02:50:24.48 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 | [199 01-05 02:50:23.90 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 | [21b 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [28d 01-05 02:50:25.17 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 | [245 01-05 02:50:24.48 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 | [21a 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [19a 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [246 01-05 02:50:24.48 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 | [28e 01-05 02:50:25.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [19b 01-05 02:50:23.90 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 -peer1.org2.example.com | [28f 01-05 02:50:25.17 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 | [21c 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [247 01-05 02:50:24.48 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 | [19c 01-05 02:50:23.90 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 | [21d 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [21b 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [248 01-05 02:50:24.48 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 | [290 01-05 02:50:25.18 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 | [19d 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [249 01-05 02:50:24.48 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 | [291 01-05 02:50:25.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [21c 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [21e 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [19e 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer0.org1.example.com | [24a 01-05 02:50:24.48 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 | [24b 01-05 02:50:24.48 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 02:50:24.48 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 | [292 01-05 02:50:25.18 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 | [19f 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [21d 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [21f 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [24d 01-05 02:50:24.48 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 | [293 01-05 02:50:25.18 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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [220 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [294 01-05 02:50:25.18 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 | [21e 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [24e 01-05 02:50:24.48 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 | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [221 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [222 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [21f 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [24f 01-05 02:50:24.49 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 | [295 01-05 02:50:25.18 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 | [223 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [220 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [250 01-05 02:50:24.49 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 | [296 01-05 02:50:25.18 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 | [297 01-05 02:50:25.18 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 | [224 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer1.org1.example.com | [221 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [251 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org2.example.com | [298 01-05 02:50:25.18 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 | [225 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [222 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [252 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [299 01-05 02:50:25.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [226 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer1.org1.example.com | [223 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [253 01-05 02:50:24.49 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 = [48533c06-d988-4f2c-9f4c-7aa47c944a81] -peer1.org2.example.com | [29a 01-05 02:50:25.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [227 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer0.org1.example.com | [254 01-05 02:50:24.49 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 | [29b 01-05 02:50:25.18 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 | [228 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [224 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org1.example.com | [255 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [48533c06-d988-4f2c-9f4c-7aa47c944a81] -peer0.org1.example.com | [256 01-05 02:50:24.49 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 | [257 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [258 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [259 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [229 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [225 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [226 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [227 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22a 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [25a 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [29c 01-05 02:50:25.18 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 | [228 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22b 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [25b 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [1a0 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [229 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22c 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [29d 01-05 02:50:25.18 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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [22a 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [25c 01-05 02:50:24.49 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 | [22d 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [29e 01-05 02:50:25.18 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [22b 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [25d 01-05 02:50:24.49 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 | [22e 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [29f 01-05 02:50:25.18 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [22c 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [25e 01-05 02:50:24.49 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 | [22f 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [2a0 01-05 02:50:25.18 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 | [22d 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [25f 01-05 02:50:24.49 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 | [230 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [22e 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [2a1 01-05 02:50:25.18 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 | [260 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [231 01-05 02:50:24.93 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 | [22f 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [2a2 01-05 02:50:25.18 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 | [232 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [261 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [230 01-05 02:50:24.70 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | [2a3 01-05 02:50:25.19 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [233 01-05 02:50:24.93 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 | [262 01-05 02:50:24.49 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 | [231 01-05 02:50:24.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer0.org1.example.com | [263 01-05 02:50:24.49 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 | [234 01-05 02:50:24.93 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 | [264 01-05 02:50:24.49 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 | [235 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [2a4 01-05 02:50:25.19 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 | [232 01-05 02:50:24.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [236 01-05 02:50:24.93 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 | [265 01-05 02:50:24.49 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 | [233 01-05 02:50:24.71 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 | [2a5 01-05 02:50:25.19 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org2.example.com | [237 01-05 02:50:24.93 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 | [266 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [2a6 01-05 02:50:25.19 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 | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer1.org1.example.com | [234 01-05 02:50:24.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [238 01-05 02:50:24.93 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.org2.example.com | [2a7 01-05 02:50:25.19 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer0.org2.example.com | [239 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [2a8 01-05 02:50:25.19 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 | [267 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org1.example.com | [235 01-05 02:50:24.71 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 | [23a 01-05 02:50:24.93 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 | [2a9 01-05 02:50:25.19 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 | [268 01-05 02:50:24.49 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----- -peer1.org1.example.com | [236 01-05 02:50:24.71 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [23b 01-05 02:50:24.93 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 | [2aa 01-05 02:50:25.19 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -orderer.example.com | [1a1 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org1.example.com | [269 01-05 02:50:24.49 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 | [23c 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer1.org2.example.com | [2ab 01-05 02:50:25.19 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [237 01-05 02:50:24.71 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 | [26a 01-05 02:50:24.49 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 | [23d 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [1a2 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [2ac 01-05 02:50:25.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 -peer0.org2.example.com | [23e 01-05 02:50:24.93 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 | [26b 01-05 02:50:24.49 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 | [238 01-05 02:50:24.71 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.org2.example.com | [2ad 01-05 02:50:25.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 = [dd0011c6-d512-45c7-8251-312c216bd939] -peer0.org2.example.com | [23f 01-05 02:50:24.93 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 | [26c 01-05 02:50:24.49 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 | [1a3 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [239 01-05 02:50:24.71 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 | [2ae 01-05 02:50:25.19 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=dd0011c6-d512-45c7-8251-312c216bd939,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer0.org2.example.com | [240 01-05 02:50:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -orderer.example.com | [1a4 01-05 02:50:23.90 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 | [26d 01-05 02:50:24.49 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 | [2af 01-05 02:50:25.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) : cscc:1.1.0 -peer1.org1.example.com | [23a 01-05 02:50:24.71 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 | [241 01-05 02:50:24.93 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 | [2b0 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [23b 01-05 02:50:24.71 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 | [242 01-05 02:50:24.94 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{0x4f, 0x63, 0xe, 0x77, 0x36, 0xb7, 0xf3, 0x1b, 0xd0, 0x22, 0x8d, 0xe5, 0x9e, 0x49, 0x5f, 0x9d, 0x34, 0x7b, 0x44, 0x65, 0x7b, 0xe3, 0xc5, 0xfc, 0x3a, 0x1a, 0x4e, 0x51, 0x55, 0x39, 0xc6, 0xd3} txOffsets= -peer0.org1.example.com | [26e 01-05 02:50:24.49 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 | [1a5 01-05 02:50:23.90 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 | [2b1 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer1.org1.example.com | [23c 01-05 02:50:24.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=12078 -peer1.org2.example.com | [2b2 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dd0011c6]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1a6 01-05 02:50:23.90 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 | [26f 01-05 02:50:24.49 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 | [23d 01-05 02:50:24.71 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 | 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.org2.example.com | [2b3 01-05 02:50:25.20 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 | [1a7 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [23e 01-05 02:50:24.71 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 | [243 01-05 02:50:24.94 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 | [270 01-05 02:50:24.49 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 | [2b4 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dd0011c6]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [23f 01-05 02:50:24.71 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 | [244 01-05 02:50:24.94 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.org1.example.com | [271 01-05 02:50:24.49 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 | [1a8 01-05 02:50:23.90 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 | [2b5 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd0011c6]Move state message INIT -peer1.org1.example.com | [240 01-05 02:50:24.71 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 | [245 01-05 02:50:24.94 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.org2.example.com | [2b6 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dd0011c6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [272 01-05 02:50:24.49 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 | [1a9 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [241 01-05 02:50:24.71 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 | [246 01-05 02:50:24.94 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 | [2b7 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [242 01-05 02:50:24.71 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 | [247 01-05 02:50:24.94 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 | [2b8 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd0011c6]sending state message INIT -peer1.org1.example.com | [243 01-05 02:50:24.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] -peer0.org1.example.com | [273 01-05 02:50:24.49 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 | [1aa 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [248 01-05 02:50:24.94 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 | [2b9 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd0011c6]Received message INIT from shim -peer1.org1.example.com | [244 01-05 02:50:24.71 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{0x4f, 0x63, 0xe, 0x77, 0x36, 0xb7, 0xf3, 0x1b, 0xd0, 0x22, 0x8d, 0xe5, 0x9e, 0x49, 0x5f, 0x9d, 0x34, 0x7b, 0x44, 0x65, 0x7b, 0xe3, 0xc5, 0xfc, 0x3a, 0x1a, 0x4e, 0x51, 0x55, 0x39, 0xc6, 0xd3} txOffsets= -peer0.org2.example.com | [249 01-05 02:50:24.94 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 | [1ab 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org2.example.com | [2ba 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dd0011c6]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=12078 -peer0.org1.example.com | [274 01-05 02:50:24.49 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 | [24a 01-05 02:50:24.94 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 | [1ac 01-05 02:50:23.90 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 | [2bb 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | ] -peer0.org2.example.com | [24b 01-05 02:50:24.94 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 | [2bc 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dd0011c6]Received INIT, initializing chaincode -peer0.org1.example.com | [275 01-05 02:50:24.49 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 | [245 01-05 02:50:24.71 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 | [1ad 01-05 02:50:23.90 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 | [2bd 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [24c 01-05 02:50:24.94 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 | [246 01-05 02:50:24.71 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.org1.example.com | [276 01-05 02:50:24.49 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 | [2be 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd0011c6]Init get response status: 200 -peer1.org1.example.com | [247 01-05 02:50:24.71 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.org1.example.com | [277 01-05 02:50:24.49 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 | [24d 01-05 02:50:24.94 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 | [2bf 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd0011c6]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [248 01-05 02:50:24.71 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 | [278 01-05 02:50:24.49 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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [2c0 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd0011c6]Move state message COMPLETED -peer0.org1.example.com | [279 01-05 02:50:24.49 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [24e 01-05 02:50:24.94 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-05 02:50:24.71 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 | [2c1 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dd0011c6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [27a 01-05 02:50:24.49 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 | [24f 01-05 02:50:24.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [24a 01-05 02:50:24.71 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 | [2c2 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd0011c6]send state message COMPLETED -peer0.org2.example.com | [250 01-05 02:50:24.94 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 | [27b 01-05 02:50:24.49 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 | [24b 01-05 02:50:24.71 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 | [2c3 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd0011c6]Received message COMPLETED from shim -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [27c 01-05 02:50:24.49 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 | [24c 01-05 02:50:24.72 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 | [2c4 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dd0011c6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [24d 01-05 02:50:24.72 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 | [27d 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [251 01-05 02:50:24.94 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 | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [24e 01-05 02:50:24.72 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 | [2c5 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dd0011c6-d512-45c7-8251-312c216bd939]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [27e 01-05 02:50:24.49 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 | [252 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [24f 01-05 02:50:24.72 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 | [2c6 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:dd0011c6-d512-45c7-8251-312c216bd939, channelID:businesschannel -peer0.org1.example.com | [27f 01-05 02:50:24.49 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 | [253 01-05 02:50:24.95 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 = [696f6cec-a53d-49ec-a490-886facb1db05] -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org1.example.com | [250 01-05 02:50:24.72 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 | [2c7 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [280 01-05 02:50:24.49 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 | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [254 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer0.org1.example.com | [281 01-05 02:50:24.50 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 | [251 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer0.org2.example.com | [255 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [696f6cec-a53d-49ec-a490-886facb1db05] -peer1.org2.example.com | [2c8 01-05 02:50:25.20 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 | [252 01-05 02:50:24.72 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 | [282 01-05 02:50:24.50 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 | [256 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer1.org2.example.com | [2c9 01-05 02:50:25.20 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 [dd0011c6-d512-45c7-8251-312c216bd939] -peer1.org1.example.com | [253 01-05 02:50:24.72 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 | [257 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org1.example.com | [283 01-05 02:50:24.50 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 | [2ca 01-05 02:50:25.20 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 | oQmWQsjpiQ== -peer1.org1.example.com | [254 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org2.example.com | [258 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [255 01-05 02:50:24.72 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 = [a8103b69-2243-4802-8338-59bda10e0f8c] -peer0.org1.example.com | [284 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [2cb 01-05 02:50:25.20 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 = [17f9d7eb-a886-44a2-873f-36a325fa6763] -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [259 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [256 01-05 02:50:24.72 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 | [25a 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [285 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [2cc 01-05 02:50:25.20 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=17f9d7eb-a886-44a2-873f-36a325fa6763,syscc=true,proposal=0x0,canname=lscc:1.1.0 -orderer.example.com | [1ae 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [25b 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [257 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [a8103b69-2243-4802-8338-59bda10e0f8c] -peer0.org1.example.com | [286 01-05 02:50:24.50 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [2cd 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [258 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [2ce 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [25c 01-05 02:50:24.95 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 | [259 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [287 01-05 02:50:24.50 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 | [2cf 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [25d 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [25a 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [288 01-05 02:50:24.50 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [25e 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [2d0 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [17f9d7eb]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [25f 01-05 02:50:24.95 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 | [25b 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [289 01-05 02:50:24.50 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 | [2d1 01-05 02:50:25.20 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [2d2 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [17f9d7eb]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [260 01-05 02:50:24.95 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 | [25c 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [28a 01-05 02:50:24.50 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [261 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [25d 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [2d3 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17f9d7eb]Move state message INIT -peer0.org1.example.com | [28b 01-05 02:50:24.50 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [262 01-05 02:50:24.95 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 | [25e 01-05 02:50:24.72 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 | [28c 01-05 02:50:24.50 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 | [2d4 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17f9d7eb]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [263 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org1.example.com | [25f 01-05 02:50:24.72 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 | [28d 01-05 02:50:24.50 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 | [2d5 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org2.example.com | [264 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [260 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [2d6 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17f9d7eb]sending state message INIT -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 | [1af 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [28e 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [265 01-05 02:50:24.95 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 | [261 01-05 02:50:24.72 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 | [262 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [1b0 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [2d7 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17f9d7eb]Received message INIT from shim -peer1.org2.example.com | [2d8 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17f9d7eb]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [2d9 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [2da 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [17f9d7eb]Received INIT, initializing chaincode -peer1.org2.example.com | [2db 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17f9d7eb]Init get response status: 200 -peer1.org2.example.com | [2dc 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17f9d7eb]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2dd 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17f9d7eb]Move state message COMPLETED -peer1.org2.example.com | [2de 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17f9d7eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [263 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [264 01-05 02:50:24.72 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 | [265 01-05 02:50:24.72 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 | [266 01-05 02:50:24.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [267 01-05 02:50:24.72 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 | [268 01-05 02:50:24.72 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 | [269 01-05 02:50:24.72 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 | [266 01-05 02:50:24.95 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 | [267 01-05 02:50:24.95 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 | [28f 01-05 02:50:24.50 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 | [2df 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17f9d7eb]send state message COMPLETED -peer1.org2.example.com | [2e0 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17f9d7eb]Received message COMPLETED from shim -peer1.org2.example.com | [2e1 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17f9d7eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2e2 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [17f9d7eb-a886-44a2-873f-36a325fa6763]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2e3 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:17f9d7eb-a886-44a2-873f-36a325fa6763, channelID:businesschannel -peer1.org2.example.com | [2e4 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [2e5 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [2e6 01-05 02:50:25.20 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 [17f9d7eb-a886-44a2-873f-36a325fa6763] -peer1.org2.example.com | [2e7 01-05 02:50:25.20 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 | [26a 01-05 02:50:24.73 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 | [26b 01-05 02:50:24.73 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 | [26c 01-05 02:50:24.73 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 | [26d 01-05 02:50:24.73 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-05 02:50:24.73 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-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [270 01-05 02:50:24.73 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 | [1b1 01-05 02:50:23.90 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 | [268 01-05 02:50:24.95 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 | [290 01-05 02:50:24.50 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 | [291 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [292 01-05 02:50:24.50 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 | [1b2 01-05 02:50:23.90 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 | [269 01-05 02:50:24.95 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 | [2e8 01-05 02:50:25.20 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 = [bcbba64e-837d-4066-9124-4b43293017c3] -peer1.org2.example.com | [2e9 01-05 02:50:25.20 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=bcbba64e-837d-4066-9124-4b43293017c3,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org2.example.com | [2ea 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org1.example.com | [271 01-05 02:50:24.73 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 | [26a 01-05 02:50:24.95 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 | [26b 01-05 02:50:24.95 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 | [26c 01-05 02:50:24.95 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 | [26d 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [272 01-05 02:50:24.73 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 | [293 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [1b3 01-05 02:50:23.90 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 | [2eb 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [26e 01-05 02:50:24.95 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 | [273 01-05 02:50:24.73 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 | [294 01-05 02:50:24.50 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 | [295 01-05 02:50:24.50 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 | [296 01-05 02:50:24.50 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 | [297 01-05 02:50:24.50 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 | [274 01-05 02:50:24.73 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 | [2ec 01-05 02:50:25.20 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 | [2ed 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bcbba64e]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [26f 01-05 02:50:24.95 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 | [270 01-05 02:50:24.95 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 | [271 01-05 02:50:24.95 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 | [272 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [273 01-05 02:50:24.95 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 | [274 01-05 02:50:24.95 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 | [275 01-05 02:50:24.95 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 | [276 01-05 02:50:24.95 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 | [1b4 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [298 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [2ee 01-05 02:50:25.20 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 | [2ef 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bcbba64e]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [277 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [275 01-05 02:50:24.73 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 | [1b5 01-05 02:50:23.90 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.org1.example.com | [299 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [2f0 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bcbba64e]Move state message INIT -peer1.org2.example.com | [2f1 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bcbba64e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [2f2 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2f3 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bcbba64e]sending state message INIT -peer1.org2.example.com | [2f4 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcbba64e]Received message INIT from shim -peer1.org2.example.com | [2f5 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bcbba64e]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [2f6 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [2f7 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bcbba64e]Received INIT, initializing chaincode -orderer.example.com | [1b6 01-05 02:50:23.90 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 | [29a 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [276 01-05 02:50:24.73 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 | [277 01-05 02:50:24.73 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 | [278 01-05 02:50:24.73 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 | [278 01-05 02:50:24.95 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 02:50:24.50 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 | [2f8 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [2f9 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcbba64e]Init get response status: 200 -peer1.org2.example.com | [2fa 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcbba64e]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2fb 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcbba64e]Move state message COMPLETED -orderer.example.com | [1b7 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [1b8 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [1b9 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [279 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [27a 01-05 02:50:24.73 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 | [27b 01-05 02:50:24.73 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 | [27c 01-05 02:50:24.73 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 | [29c 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [2fc 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bcbba64e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [279 01-05 02:50:24.95 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [27d 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [29d 01-05 02:50:24.50 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 | [2fd 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bcbba64e]send state message COMPLETED -peer0.org2.example.com | [27a 01-05 02:50:24.95 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 | [29e 01-05 02:50:24.50 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 | [27e 01-05 02:50:24.73 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer1.org2.example.com | [2fe 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bcbba64e]Received message COMPLETED from shim -peer0.org2.example.com | [27b 01-05 02:50:24.95 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 | [27f 01-05 02:50:24.73 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 | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [29f 01-05 02:50:24.50 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 | [2ff 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bcbba64e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [27c 01-05 02:50:24.95 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 | [280 01-05 02:50:24.73 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 | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [2a0 01-05 02:50:24.50 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 | [27d 01-05 02:50:24.95 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 | [300 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bcbba64e-837d-4066-9124-4b43293017c3]HandleMessage- COMPLETED. Notify -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [281 01-05 02:50:24.73 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 | [2a1 01-05 02:50:24.50 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 | [301 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bcbba64e-837d-4066-9124-4b43293017c3, channelID:businesschannel -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer0.org1.example.com | [2a2 01-05 02:50:24.50 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 | [282 01-05 02:50:24.73 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 | [27e 01-05 02:50:24.95 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 | [302 01-05 02:50:25.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [2a3 01-05 02:50:24.51 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 | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [283 01-05 02:50:24.73 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 02:50:24.95 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 | [2a4 01-05 02:50:24.51 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [303 01-05 02:50:25.20 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 | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer1.org1.example.com | [284 01-05 02:50:24.73 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 | [2a5 01-05 02:50:24.51 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 | [280 01-05 02:50:24.95 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 | [304 01-05 02:50:25.20 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 [bcbba64e-837d-4066-9124-4b43293017c3] -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer0.org1.example.com | [2a6 01-05 02:50:24.51 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 | [281 01-05 02:50:24.95 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 | [305 01-05 02:50:25.20 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 | [285 01-05 02:50:24.73 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 | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer0.org1.example.com | [2a7 01-05 02:50:24.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer0.org1.example.com | [2a8 01-05 02:50:24.51 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 | [306 01-05 02:50:25.20 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 = [2bbbb3c6-8ec5-4951-964e-32e5ae635943] -peer0.org2.example.com | [282 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [2a9 01-05 02:50:24.51 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 | vA2BLfriqQ== -peer1.org1.example.com | [286 01-05 02:50:24.73 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 | [2aa 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [307 01-05 02:50:25.21 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=2bbbb3c6-8ec5-4951-964e-32e5ae635943,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [283 01-05 02:50:24.95 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 | [287 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [2ab 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org2.example.com | [308 01-05 02:50:25.21 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 | [284 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [288 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [2ac 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [1ba 01-05 02:50:23.90 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 | [309 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [2ad 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [80e0acd5-2b5c-48bd-8c7f-58e341340a46] -peer0.org2.example.com | [285 01-05 02:50:24.95 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 | [289 01-05 02:50:24.73 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 | [2ae 01-05 02:50:24.52 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=80e0acd5-2b5c-48bd-8c7f-58e341340a46,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [30a 01-05 02:50:25.21 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 | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [2af 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer1.org2.example.com | [30b 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2bbbb3c6]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [28a 01-05 02:50:24.73 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 | [286 01-05 02:50:24.95 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 | [2b0 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [2b1 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org2.example.com | [287 01-05 02:50:24.95 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 | [30c 01-05 02:50:25.21 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 | [28b 01-05 02:50:24.73 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 | [2b2 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [80e0acd5]Inside sendExecuteMessage. Message INIT -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [288 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [30d 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2bbbb3c6]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [28c 01-05 02:50:24.73 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 | [2b3 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org2.example.com | [289 01-05 02:50:24.95 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 | [28d 01-05 02:50:24.73 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 | [30e 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2bbbb3c6]Move state message INIT -peer0.org1.example.com | [2b4 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [80e0acd5]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [28a 01-05 02:50:24.95 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 | [28e 01-05 02:50:24.73 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [2b5 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80e0acd5]Move state message INIT -peer1.org2.example.com | [30f 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2bbbb3c6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [28b 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [2b6 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [80e0acd5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [310 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2b7 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [28c 01-05 02:50:24.95 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 | [28f 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [2b8 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80e0acd5]sending state message INIT -peer0.org2.example.com | [28d 01-05 02:50:24.95 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer1.org2.example.com | [311 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2bbbb3c6]sending state message INIT -peer0.org1.example.com | [2b9 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Received message INIT from shim -peer1.org1.example.com | [290 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [28e 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org1.example.com | [2ba 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [80e0acd5]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [312 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2bbbb3c6]Received message INIT from shim -peer1.org1.example.com | [291 01-05 02:50:24.73 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 | [2bb 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [28f 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [2bc 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [80e0acd5]Received INIT, initializing chaincode -peer1.org1.example.com | [292 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [313 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2bbbb3c6]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org2.example.com | [290 01-05 02:50:24.95 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [2bd 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [293 01-05 02:50:24.73 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 | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer1.org2.example.com | [314 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [2be 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Init get response status: 200 -peer0.org2.example.com | [291 01-05 02:50:24.95 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 | [294 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [2bf 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Init succeeded. Sending COMPLETED -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer1.org2.example.com | [315 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2bbbb3c6]Received INIT, initializing chaincode -peer0.org2.example.com | [292 01-05 02:50:24.95 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 | [2c0 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Move state message COMPLETED -peer1.org1.example.com | [295 01-05 02:50:24.73 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [293 01-05 02:50:24.95 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 | [316 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2bbbb3c6]Init get response status: 200 -peer0.org1.example.com | [2c1 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [80e0acd5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [296 01-05 02:50:24.73 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 | [1bb 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [294 01-05 02:50:24.96 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 | [2c2 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]send state message COMPLETED -peer1.org2.example.com | [317 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2bbbb3c6]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [2c3 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80e0acd5]Received message COMPLETED from shim -orderer.example.com | [1bc 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org1.example.com | [297 01-05 02:50:24.73 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 | [318 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2bbbb3c6]Move state message COMPLETED -peer0.org2.example.com | [295 01-05 02:50:24.96 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 | [2c4 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [80e0acd5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1bd 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [298 01-05 02:50:24.73 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 | [319 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2bbbb3c6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [296 01-05 02:50:24.96 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 | [2c5 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [80e0acd5-2b5c-48bd-8c7f-58e341340a46]HandleMessage- COMPLETED. Notify -orderer.example.com | [1be 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [31a 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2bbbb3c6]send state message COMPLETED -peer1.org1.example.com | [299 01-05 02:50:24.73 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 | [297 01-05 02:50:24.96 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 | [2c6 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:80e0acd5-2b5c-48bd-8c7f-58e341340a46, channelID:businesschannel -peer1.org2.example.com | [31b 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2bbbb3c6]Received message COMPLETED from shim -peer1.org1.example.com | [29a 01-05 02:50:24.73 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 | [2c7 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [298 01-05 02:50:24.96 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 | [1bf 01-05 02:50:23.90 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 | [29b 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [31c 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2bbbb3c6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [299 01-05 02:50:24.96 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 | [2c8 01-05 02:50:24.52 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 | [1c0 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [29c 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [31d 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [2bbbb3c6-8ec5-4951-964e-32e5ae635943]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2c9 01-05 02:50:24.52 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 [80e0acd5-2b5c-48bd-8c7f-58e341340a46] -peer0.org2.example.com | [29a 01-05 02:50:24.96 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 | [1c1 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org2.example.com | [31e 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:2bbbb3c6-8ec5-4951-964e-32e5ae635943, channelID:businesschannel -peer1.org1.example.com | [29d 01-05 02:50:24.73 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 | [2ca 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [29b 01-05 02:50:24.96 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 | [29e 01-05 02:50:24.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [1c2 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [2cb 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bac6b6b3-b172-4c79-807c-b96dde1835db] -peer1.org2.example.com | [31f 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [29c 01-05 02:50:24.96 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 | [29f 01-05 02:50:24.73 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 | [2cc 01-05 02:50:24.52 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=bac6b6b3-b172-4c79-807c-b96dde1835db,syscc=true,proposal=0x0,canname=lscc:1.1.0 -orderer.example.com | [1c3 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org2.example.com | [320 01-05 02:50:25.21 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 | [29d 01-05 02:50:24.96 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 | [2cd 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [2a0 01-05 02:50:24.73 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 | [1c4 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org2.example.com | [321 01-05 02:50:25.21 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 [2bbbb3c6-8ec5-4951-964e-32e5ae635943] -peer0.org2.example.com | [29e 01-05 02:50:24.96 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 | [2ce 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1c5 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer1.org2.example.com | [322 01-05 02:50:25.21 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 | [29f 01-05 02:50:24.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [2a1 01-05 02:50:24.73 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 | [2cf 01-05 02:50:24.52 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 | [1c6 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org2.example.com | [323 01-05 02:50:25.21 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 = [d198a969-3339-4977-a548-10d51feb7503] -peer0.org2.example.com | [2a0 01-05 02:50:24.96 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 | [2a2 01-05 02:50:24.73 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 | [1c7 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org1.example.com | [2d0 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bac6b6b3]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2a1 01-05 02:50:24.96 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 | [324 01-05 02:50:25.21 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=d198a969-3339-4977-a548-10d51feb7503,syscc=true,proposal=0x0,canname=qscc:1.1.0 -orderer.example.com | [1c8 01-05 02:50:23.90 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 -peer1.org1.example.com | [2a3 01-05 02:50:24.73 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 | [2a2 01-05 02:50:24.96 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 | [325 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer0.org1.example.com | [2d1 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [1c9 01-05 02:50:23.90 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.org1.example.com | [2a4 01-05 02:50:24.74 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 | [2a3 01-05 02:50:24.97 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [326 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2a5 01-05 02:50:24.74 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 | [2d2 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bac6b6b3]sendExecuteMsg trigger event INIT -orderer.example.com | [1ca 01-05 02:50:23.90 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 | [2a4 01-05 02:50:24.97 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 | [2a6 01-05 02:50:24.75 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 | [327 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -peer0.org1.example.com | [2d3 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac6b6b3]Move state message INIT -orderer.example.com | [1cb 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -peer0.org2.example.com | [2a5 01-05 02:50:24.97 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 | [2a7 01-05 02:50:24.75 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 | [2d4 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bac6b6b3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [328 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d198a969]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1cc 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -peer0.org2.example.com | [2a6 01-05 02:50:24.97 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 | [1cd 01-05 02:50:23.90 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 | [2d5 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2a8 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [329 01-05 02:50:25.21 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 | [2a7 01-05 02:50:24.97 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 | [1ce 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -peer0.org1.example.com | [2d6 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac6b6b3]sending state message INIT -peer1.org1.example.com | [2a9 01-05 02:50:24.75 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 | [32a 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d198a969]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [2a8 01-05 02:50:24.97 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 | [1cf 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [2d7 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Received message INIT from shim -peer1.org1.example.com | [2aa 01-05 02:50:24.75 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 | [32b 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d198a969]Move state message INIT -peer0.org2.example.com | [2a9 01-05 02:50:24.97 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 | [1d0 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -peer0.org1.example.com | [2d8 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac6b6b3]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [2ab 01-05 02:50:24.75 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 | [1d1 01-05 02:50:23.90 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.org2.example.com | [32c 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d198a969]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2d9 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2ac 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org2.example.com | [2aa 01-05 02:50:24.97 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [32d 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2da 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bac6b6b3]Received INIT, initializing chaincode -orderer.example.com | [1d2 01-05 02:50:23.91 UTC] [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 | [2ad 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer0.org2.example.com | [2ab 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -peer1.org2.example.com | [32e 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d198a969]sending state message INIT -peer1.org2.example.com | [32f 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d198a969]Received message INIT from shim -peer1.org2.example.com | [330 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d198a969]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [2ae 01-05 02:50:24.75 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 | [2af 01-05 02:50:24.75 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 = [c8b677e3-c035-4e91-94fa-e407bb24ed1b] -peer0.org1.example.com | [2db 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Init get response status: 200 -orderer.example.com | [1d3 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [2ac 01-05 02:50:24.98 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 | [2b0 01-05 02:50:24.75 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=c8b677e3-c035-4e91-94fa-e407bb24ed1b,syscc=true,proposal=0x0,canname=cscc:1.1.0 -peer1.org2.example.com | [331 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [332 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d198a969]Received INIT, initializing chaincode -peer1.org2.example.com | [333 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [334 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d198a969]Init get response status: 200 -peer1.org2.example.com | [335 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d198a969]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [2b1 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -peer0.org1.example.com | [2dc 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Init succeeded. Sending COMPLETED -orderer.example.com | [1d4 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -peer0.org2.example.com | [2ad 01-05 02:50:24.98 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 = [e04c661e-7482-461e-86ed-4315a993ecca] -peer1.org1.example.com | [2b2 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2b3 01-05 02:50:24.75 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 | [336 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d198a969]Move state message COMPLETED -orderer.example.com | [1d5 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [2dd 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Move state message COMPLETED -peer1.org1.example.com | [2b4 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c8b677e3]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2ae 01-05 02:50:24.98 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=e04c661e-7482-461e-86ed-4315a993ecca,syscc=true,proposal=0x0,canname=cscc:1.1.0 -orderer.example.com | [1d6 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [337 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d198a969]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2b5 01-05 02:50:24.75 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 | [2de 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac6b6b3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2af 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -orderer.example.com | [1d7 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [338 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d198a969]send state message COMPLETED -peer1.org1.example.com | [2b6 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c8b677e3]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [2b0 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1d8 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -peer0.org1.example.com | [2df 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]send state message COMPLETED -peer1.org2.example.com | [339 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d198a969]Received message COMPLETED from shim -peer1.org1.example.com | [2b7 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8b677e3]Move state message INIT -peer0.org2.example.com | [2b1 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -peer0.org2.example.com | [2b2 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e04c661e]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2b3 01-05 02:50:24.98 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 | [2b4 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e04c661e]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2b8 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8b677e3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2b9 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2ba 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8b677e3]sending state message INIT -peer1.org1.example.com | [2bb 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8b677e3]Received message INIT from shim -peer0.org1.example.com | [2e0 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac6b6b3]Received message COMPLETED from shim -peer0.org2.example.com | [2b5 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e04c661e]Move state message INIT -orderer.example.com | [1d9 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [33a 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d198a969]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [33b 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d198a969-3339-4977-a548-10d51feb7503]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [33c 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d198a969-3339-4977-a548-10d51feb7503, channelID:businesschannel -peer1.org1.example.com | [2bc 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8b677e3]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2b6 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e04c661e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2e1 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bac6b6b3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [1da 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [2bd 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2b7 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [33d 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [1db 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [2be 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c8b677e3]Received INIT, initializing chaincode -peer0.org2.example.com | [2b8 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e04c661e]sending state message INIT -peer0.org2.example.com | [2b9 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e04c661e]Received message INIT from shim -peer0.org2.example.com | [2ba 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e04c661e]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2bb 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2bc 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e04c661e]Received INIT, initializing chaincode -peer0.org2.example.com | [2bd 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [2be 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e04c661e]Init get response status: 200 -peer0.org2.example.com | [2bf 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e04c661e]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2c0 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e04c661e]Move state message COMPLETED -peer0.org2.example.com | [2c1 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e04c661e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2c2 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e04c661e]send state message COMPLETED -peer0.org2.example.com | [2c3 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e04c661e]Received message COMPLETED from shim -peer1.org2.example.com | [33e 01-05 02:50:25.21 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.org1.example.com | [2e2 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bac6b6b3-b172-4c79-807c-b96dde1835db]HandleMessage- COMPLETED. Notify -orderer.example.com | [1dc 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [2bf 01-05 02:50:24.75 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [2c4 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e04c661e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [33f 01-05 02:50:25.21 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 [d198a969-3339-4977-a548-10d51feb7503] -peer0.org1.example.com | [2e3 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bac6b6b3-b172-4c79-807c-b96dde1835db, channelID:businesschannel -orderer.example.com | [1dd 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [2c0 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8b677e3]Init get response status: 200 -peer0.org2.example.com | [2c5 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e04c661e-7482-461e-86ed-4315a993ecca]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [340 01-05 02:50:25.21 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 | [2e4 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | [1de 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [2c1 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8b677e3]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2c6 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e04c661e-7482-461e-86ed-4315a993ecca, channelID:businesschannel -peer1.org2.example.com | [341 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [2e5 01-05 02:50:24.53 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 | [1df 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [2c2 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8b677e3]Move state message COMPLETED -peer0.org2.example.com | [2c7 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [342 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [2e6 01-05 02:50:24.53 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 [bac6b6b3-b172-4c79-807c-b96dde1835db] -orderer.example.com | [1e0 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [2c3 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8b677e3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [343 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org2.example.com | [2c8 01-05 02:50:24.98 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 -peer0.org1.example.com | [2e7 01-05 02:50:24.53 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 | [1e1 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org1.example.com | [2c4 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8b677e3]send state message COMPLETED -peer1.org2.example.com | [344 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [2c9 01-05 02:50:24.98 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 [e04c661e-7482-461e-86ed-4315a993ecca] -peer1.org2.example.com | [345 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer1.org2.example.com | [346 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org1.example.com | [2e8 01-05 02:50:24.53 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 = [bab2b400-d9c5-4f33-aea0-e482dc8dee64] -peer0.org2.example.com | [2ca 01-05 02:50:24.98 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 | [1e2 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [347 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f8191fb]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [348 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f8191fb]Move state message COMPLETED -peer1.org2.example.com | [349 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8f8191fb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [34a 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8f8191fb]send state message COMPLETED -peer1.org2.example.com | [34b 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8f8191fb]Received message COMPLETED from shim -peer1.org2.example.com | [34c 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8f8191fb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2cb 01-05 02:50:24.98 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 = [e3fac397-ab15-481d-a526-ee0f4067ba0e] -peer0.org2.example.com | [2cc 01-05 02:50:24.98 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=e3fac397-ab15-481d-a526-ee0f4067ba0e,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer0.org2.example.com | [2cd 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [2ce 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2cf 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [2d0 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e3fac397]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2d1 01-05 02:50:24.98 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 | [2d2 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e3fac397]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [2e9 01-05 02:50:24.53 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=bab2b400-d9c5-4f33-aea0-e482dc8dee64,syscc=true,proposal=0x0,canname=escc:1.1.0 -orderer.example.com | [1e3 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [1e4 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [2c5 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8b677e3]Received message COMPLETED from shim -peer1.org1.example.com | [2c6 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8b677e3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2c7 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8b677e3-c035-4e91-94fa-e407bb24ed1b]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2c8 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c8b677e3-c035-4e91-94fa-e407bb24ed1b, channelID:businesschannel -peer1.org1.example.com | [2c9 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [2ca 01-05 02:50:24.76 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 | [2cb 01-05 02:50:24.76 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 [c8b677e3-c035-4e91-94fa-e407bb24ed1b] -peer1.org1.example.com | [2cc 01-05 02:50:24.76 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 | [2d3 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3fac397]Move state message INIT -peer0.org2.example.com | [2d4 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e3fac397]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [2d5 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2ea 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [1e5 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [1e6 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [1e7 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [1e8 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [1e9 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [2cd 01-05 02:50:24.76 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 = [6441d8a7-7616-465f-bc6e-b9a47b5f6809] -peer1.org1.example.com | [2ce 01-05 02:50:24.76 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=6441d8a7-7616-465f-bc6e-b9a47b5f6809,syscc=true,proposal=0x0,canname=lscc:1.1.0 -peer1.org1.example.com | [2cf 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org1.example.com | [2d0 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2d1 01-05 02:50:24.76 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 | [2d2 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6441d8a7]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [2d3 01-05 02:50:24.76 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 | [2d4 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6441d8a7]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [34d 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8f8191fbc84200b28c1931032a3422541792b32335f966830e414a058c42d673]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2d6 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3fac397]sending state message INIT -peer0.org2.example.com | [2d7 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3fac397]Received message INIT from shim -peer0.org2.example.com | [2d8 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3fac397]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2d9 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2da 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e3fac397]Received INIT, initializing chaincode -peer0.org1.example.com | [2eb 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1ea 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [2d5 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6441d8a7]Move state message INIT -peer1.org2.example.com | [34e 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8f8191fbc84200b28c1931032a3422541792b32335f966830e414a058c42d673, channelID: -peer1.org2.example.com | [34f 01-05 02:50:25.21 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 | [350 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [351 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [352 01-05 02:50:25.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:41066) -peer1.org2.example.com | [353 01-05 02:50:31.20 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 | [354 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [355 01-05 02:50:31.22 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 | [356 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer1.org2.example.com | [357 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer1.org2.example.com | [358 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org2.example.com | [359 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer1.org2.example.com | [35b 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [35c 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [35d 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421968b20 env 0xc421891980 txn 0 -peer1.org2.example.com | [35e 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421891980 -peer0.org2.example.com | [2db 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3fac397]Init get response status: 200 -peer0.org2.example.com | [2dc 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3fac397]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2dd 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3fac397]Move state message COMPLETED -peer0.org2.example.com | [2de 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3fac397]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [2ec 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [1eb 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [1ec 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [2d6 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6441d8a7]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2d7 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2d8 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6441d8a7]sending state message INIT -peer1.org1.example.com | [2d9 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6441d8a7]Received message INIT from shim -peer1.org1.example.com | [2da 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6441d8a7]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [2db 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2dc 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6441d8a7]Received INIT, initializing chaincode -peer1.org1.example.com | [2dd 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6441d8a7]Init get response status: 200 -peer1.org1.example.com | [2de 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6441d8a7]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [2df 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6441d8a7]Move state message COMPLETED -peer0.org2.example.com | [2df 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3fac397]send state message COMPLETED -peer0.org1.example.com | [2ed 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bab2b400]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [2ee 01-05 02:50:24.53 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 | [2ef 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bab2b400]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2e0 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6441d8a7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [2f0 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bab2b400]Move state message INIT -peer1.org2.example.com | [35f 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -orderer.example.com | [1ed 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [2e0 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3fac397]Received message COMPLETED from shim -peer0.org1.example.com | [2f1 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bab2b400]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2e1 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6441d8a7]send state message COMPLETED -orderer.example.com | [1ee 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [360 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [361 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [362 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org2.example.com | [363 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [364 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [2e1 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e3fac397]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2f2 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2e2 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6441d8a7]Received message COMPLETED from shim -peer0.org2.example.com | [2e2 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e3fac397-ab15-481d-a526-ee0f4067ba0e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2e3 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e3fac397-ab15-481d-a526-ee0f4067ba0e, channelID:businesschannel -peer0.org2.example.com | [2e4 01-05 02:50:24.98 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2e5 01-05 02:50:24.98 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 | [2e6 01-05 02:50:24.98 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 [e3fac397-ab15-481d-a526-ee0f4067ba0e] -peer0.org2.example.com | [2e7 01-05 02:50:24.99 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 | [365 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42198d000, header channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -orderer.example.com | [1ef 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [2f3 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bab2b400]sending state message INIT -peer0.org2.example.com | [2e8 01-05 02:50:24.99 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 = [9676537a-c3c0-4529-8e32-c7809b0c0e61] -peer1.org1.example.com | [2e3 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6441d8a7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [366 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [1f0 01-05 02:50:23.91 UTC] [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.org1.example.com | [2f4 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Received message INIT from shim -peer0.org2.example.com | [2e9 01-05 02:50:24.99 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=9676537a-c3c0-4529-8e32-c7809b0c0e61,syscc=true,proposal=0x0,canname=escc:1.1.0 -peer1.org2.example.com | [367 01-05 02:50:31.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 | [1f1 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [2e4 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6441d8a7-7616-465f-bc6e-b9a47b5f6809]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2ea 01-05 02:50:24.99 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 | [2f5 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bab2b400]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [368 01-05 02:50:31.24 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 | [1f2 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [2e5 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6441d8a7-7616-465f-bc6e-b9a47b5f6809, channelID:businesschannel -peer0.org1.example.com | [2f6 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2eb 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1f3 01-05 02:50:23.91 UTC] [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 | [2e6 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [369 01-05 02:50:31.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 -peer0.org1.example.com | [2f7 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bab2b400]Received INIT, initializing chaincode -peer0.org2.example.com | [2ec 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [1f4 01-05 02:50:23.91 UTC] [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 | [36a 01-05 02:50:31.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 -peer1.org1.example.com | [2e7 01-05 02:50:24.76 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 | [2ed 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9676537a]Inside sendExecuteMessage. Message INIT -orderer.example.com | [1f5 01-05 02:50:23.91 UTC] [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 | [2f8 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [36b 01-05 02:50:31.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 -orderer.example.com | [1f6 01-05 02:50:23.91 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 | [2f9 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Init get response status: 200 -peer0.org2.example.com | [2ee 01-05 02:50:24.99 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 | [2e8 01-05 02:50:24.76 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 [6441d8a7-7616-465f-bc6e-b9a47b5f6809] -peer1.org2.example.com | [36c 01-05 02:50:31.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 | [2ef 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9676537a]sendExecuteMsg trigger event INIT -orderer.example.com | [1f7 01-05 02:50:23.91 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 | [2fa 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [36d 01-05 02:50:31.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 | [2f0 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9676537a]Move state message INIT -peer1.org1.example.com | [2e9 01-05 02:50:24.76 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 | [2fb 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Move state message COMPLETED -peer1.org2.example.com | [36e 01-05 02:50:31.25 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 | [2f1 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9676537a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [1f8 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [2ea 01-05 02:50:24.76 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 = [6f47610a-86af-47f0-aea2-4467900c7b12] -peer1.org2.example.com | [36f 01-05 02:50:31.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.org1.example.com | [2fc 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bab2b400]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2eb 01-05 02:50:24.76 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=6f47610a-86af-47f0-aea2-4467900c7b12,syscc=true,proposal=0x0,canname=escc:1.1.0 -orderer.example.com | [1f9 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [2f2 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [370 01-05 02:50:31.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 -peer0.org1.example.com | [2fd 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]send state message COMPLETED -orderer.example.com | [1fa 01-05 02:50:23.91 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 | [2ec 01-05 02:50:24.76 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 | [2f3 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9676537a]sending state message INIT -peer1.org2.example.com | [371 01-05 02:50:31.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.org1.example.com | [2ed 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | [1fb 01-05 02:50:23.91 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 | [2fe 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bab2b400]Received message COMPLETED from shim -orderer.example.com | [1fc 01-05 02:50:23.91 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 | [2ff 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bab2b400]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [372 01-05 02:50:31.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 -peer0.org2.example.com | [2f4 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9676537a]Received message INIT from shim -peer1.org1.example.com | [2ee 01-05 02:50:24.76 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 | [373 01-05 02:50:31.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.org1.example.com | [300 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bab2b400-d9c5-4f33-aea0-e482dc8dee64]HandleMessage- COMPLETED. Notify -orderer.example.com | [1fd 01-05 02:50:23.91 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 | [2ef 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f47610a]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2f5 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9676537a]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [301 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bab2b400-d9c5-4f33-aea0-e482dc8dee64, channelID:businesschannel -peer1.org2.example.com | [374 01-05 02:50:31.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 -orderer.example.com | [1fe 01-05 02:50:23.91 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 | [2f6 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2f0 01-05 02:50:24.76 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 | [302 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [303 01-05 02:50:24.53 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 | [304 01-05 02:50:24.53 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 [bab2b400-d9c5-4f33-aea0-e482dc8dee64] -peer0.org2.example.com | [2f7 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9676537a]Received INIT, initializing chaincode -peer1.org2.example.com | [375 01-05 02:50:31.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 -peer1.org2.example.com | [376 01-05 02:50:31.25 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 | [1ff 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [200 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [201 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [202 01-05 02:50:23.91 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 | [2f1 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6f47610a]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [2f8 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [2f9 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9676537a]Init get response status: 200 -peer0.org1.example.com | [305 01-05 02:50:24.53 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 | [203 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [204 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -orderer.example.com | [205 01-05 02:50:23.91 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 -orderer.example.com | [206 01-05 02:50:23.91 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.org1.example.com | [306 01-05 02:50:24.53 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 = [cf40ec3d-9534-43df-abe3-852bd9c64d83] -peer1.org1.example.com | [2f2 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f47610a]Move state message INIT -peer1.org2.example.com | [377 01-05 02:50:31.25 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 | [2fa 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9676537a]Init succeeded. Sending COMPLETED -orderer.example.com | [207 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer1.org2.example.com | [378 01-05 02:50:31.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer1.org2.example.com | [35a 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org1.example.com | [307 01-05 02:50:24.53 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=cf40ec3d-9534-43df-abe3-852bd9c64d83,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [2f3 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6f47610a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [208 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -peer0.org2.example.com | [2fb 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9676537a]Move state message COMPLETED -peer1.org2.example.com | [379 01-05 02:50:31.25 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer1.org1.example.com | [2f4 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [209 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -peer1.org2.example.com | [37a 01-05 02:50:31.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2fc 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9676537a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [308 01-05 02:50:24.53 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 | [2f5 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f47610a]sending state message INIT -orderer.example.com | [20a 01-05 02:50:23.91 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 | [2fd 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9676537a]send state message COMPLETED -peer0.org1.example.com | [309 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [37b 01-05 02:50:31.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f6 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f47610a]Received message INIT from shim -orderer.example.com | [20b 01-05 02:50:23.91 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 | [30a 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [2fe 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9676537a]Received message COMPLETED from shim -peer1.org1.example.com | [2f7 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f47610a]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [20c 01-05 02:50:23.91 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 | [2ff 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9676537a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [37c 01-05 02:50:31.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [30b 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cf40ec3d]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [2f8 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | [20d 01-05 02:50:23.91 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 | [300 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [9676537a-c3c0-4529-8e32-c7809b0c0e61]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [30c 01-05 02:50:24.53 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 | [2f9 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6f47610a]Received INIT, initializing chaincode -peer1.org2.example.com | [37d 01-05 02:50:31.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [20e 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [301 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:9676537a-c3c0-4529-8e32-c7809b0c0e61, channelID:businesschannel -peer0.org1.example.com | [30d 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cf40ec3d]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [302 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [303 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | [304 01-05 02:50:24.99 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 [9676537a-c3c0-4529-8e32-c7809b0c0e61] -orderer.example.com | [20f 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer1.org1.example.com | [2fa 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [37e 01-05 02:50:31.26 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 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer1.org2.example.com | [380 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [381 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [382 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [305 01-05 02:50:24.99 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 | [30e 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cf40ec3d]Move state message INIT -peer1.org1.example.com | [2fb 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f47610a]Init get response status: 200 -peer1.org2.example.com | [383 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [210 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [306 01-05 02:50:24.99 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 = [4736c0fe-5f60-4b71-8eba-4b3e3791598c] -peer0.org2.example.com | [307 01-05 02:50:24.99 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=4736c0fe-5f60-4b71-8eba-4b3e3791598c,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [308 01-05 02:50:24.99 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 | [309 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [30a 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [30b 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4736c0fe]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [30c 01-05 02:50:24.99 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 | [30f 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cf40ec3d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [310 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [311 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cf40ec3d]sending state message INIT -peer0.org1.example.com | [312 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Received message INIT from shim -peer0.org1.example.com | [313 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cf40ec3d]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [2fc 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f47610a]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [384 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [211 01-05 02:50:23.91 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 | [30d 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4736c0fe]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [314 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2fd 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f47610a]Move state message COMPLETED -orderer.example.com | [212 01-05 02:50:23.91 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 | [385 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [315 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [cf40ec3d]Received INIT, initializing chaincode -peer1.org1.example.com | [2fe 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6f47610a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [30e 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4736c0fe]Move state message INIT -orderer.example.com | [213 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [386 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [214 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -peer0.org1.example.com | [316 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Init get response status: 200 -peer0.org2.example.com | [30f 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4736c0fe]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [310 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2ff 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6f47610a]send state message COMPLETED -peer1.org2.example.com | [387 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [311 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4736c0fe]sending state message INIT -orderer.example.com | [215 01-05 02:50:23.91 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 | [317 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [388 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [300 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6f47610a]Received message COMPLETED from shim -peer0.org2.example.com | [312 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4736c0fe]Received message INIT from shim -orderer.example.com | [216 01-05 02:50:23.91 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 | [318 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Move state message COMPLETED -peer1.org2.example.com | [389 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [301 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6f47610a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [313 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4736c0fe]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [319 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cf40ec3d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [38a 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [31a 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]send state message COMPLETED -peer1.org1.example.com | [302 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6f47610a-86af-47f0-aea2-4467900c7b12]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [38b 01-05 02:50:31.26 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 | [314 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [38c 01-05 02:50:31.26 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 | [31b 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cf40ec3d]Received message COMPLETED from shim -peer0.org2.example.com | [315 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4736c0fe]Received INIT, initializing chaincode -peer1.org1.example.com | [303 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6f47610a-86af-47f0-aea2-4467900c7b12, channelID:businesschannel -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [38d 01-05 02:50:31.26 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 | [31c 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cf40ec3d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [316 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4736c0fe]Init get response status: 200 -peer1.org1.example.com | [304 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [38e 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [31d 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cf40ec3d-9534-43df-abe3-852bd9c64d83]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [305 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | [317 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4736c0fe]Init succeeded. Sending COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | [31e 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cf40ec3d-9534-43df-abe3-852bd9c64d83, channelID:businesschannel -peer0.org2.example.com | [318 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4736c0fe]Move state message COMPLETED -peer1.org2.example.com | [38f 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer1.org1.example.com | [306 01-05 02:50:24.76 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 [6f47610a-86af-47f0-aea2-4467900c7b12] -peer0.org1.example.com | [31f 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [319 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4736c0fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [31a 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4736c0fe]send state message COMPLETED -peer0.org2.example.com | [31b 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4736c0fe]Received message COMPLETED from shim -peer1.org2.example.com | [390 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org1.example.com | [307 01-05 02:50:24.76 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 | [31c 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4736c0fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [320 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [321 01-05 02:50:24.54 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 [cf40ec3d-9534-43df-abe3-852bd9c64d83] -peer0.org2.example.com | [31d 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4736c0fe-5f60-4b71-8eba-4b3e3791598c]HandleMessage- COMPLETED. Notify -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [391 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [308 01-05 02:50:24.76 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 = [c41b0ef0-7972-44f3-862e-d870231b6423] -peer0.org2.example.com | [31e 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4736c0fe-5f60-4b71-8eba-4b3e3791598c, channelID:businesschannel -peer0.org1.example.com | [322 01-05 02:50:24.54 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 | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org2.example.com | [392 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [31f 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | jTZ94VyvHhJOn4fshoU= -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [309 01-05 02:50:24.76 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=c41b0ef0-7972-44f3-862e-d870231b6423,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [393 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [320 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [323 01-05 02:50:24.54 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 = [285c7f7c-3513-40c6-a09c-297f24457c10] -orderer.example.com | [217 01-05 02:50:23.91 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 0xc4201394e0 gate 1515120623918634100 evaluation starts -peer1.org1.example.com | [30a 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org1.example.com | [324 01-05 02:50:24.54 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=285c7f7c-3513-40c6-a09c-297f24457c10,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org2.example.com | [394 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [321 01-05 02:50:24.99 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 [4736c0fe-5f60-4b71-8eba-4b3e3791598c] -orderer.example.com | [218 01-05 02:50:23.91 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 0xc4201394e0 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [30b 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [325 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer1.org2.example.com | [395 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [219 01-05 02:50:23.91 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 0xc4201394e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [326 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [322 01-05 02:50:24.99 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 | [396 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [21a 01-05 02:50:23.91 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 0xc4201394e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer0.org1.example.com | [327 01-05 02:50:24.54 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 | [30c 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -peer0.org2.example.com | [323 01-05 02:50:24.99 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 = [533d3c58-c231-4d72-9a07-0e4648780bdd] -peer1.org2.example.com | [397 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [21b 01-05 02:50:23.91 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 0xc4201394e0 principal evaluation fails -peer1.org1.example.com | [30d 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c41b0ef0]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [328 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [285c7f7c]Inside sendExecuteMessage. Message INIT -orderer.example.com | [21c 01-05 02:50:23.91 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 0xc4201394e0 gate 1515120623918634100 evaluation fails -peer0.org2.example.com | [324 01-05 02:50:24.99 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=533d3c58-c231-4d72-9a07-0e4648780bdd,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer1.org1.example.com | [30e 01-05 02:50:24.76 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 | [329 01-05 02:50:24.54 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 | [21d 01-05 02:50:23.91 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 | [325 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -peer1.org2.example.com | [398 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [30f 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c41b0ef0]sendExecuteMsg trigger event INIT -orderer.example.com | [21e 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [32a 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [285c7f7c]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [326 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [310 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c41b0ef0]Move state message INIT -orderer.example.com | [21f 01-05 02:50:23.91 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 == -peer0.org1.example.com | [32b 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [285c7f7c]Move state message INIT -peer0.org2.example.com | [327 01-05 02:50:24.99 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 -orderer.example.com | [220 01-05 02:50:23.91 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 0xc4201394f8 gate 1515120623919819800 evaluation starts -peer1.org2.example.com | [399 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [311 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c41b0ef0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | [221 01-05 02:50:23.91 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 0xc4201394f8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [32c 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [285c7f7c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [328 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [533d3c58]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [39a 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [222 01-05 02:50:23.92 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 0xc4201394f8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [312 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [32d 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [39b 01-05 02:50:31.26 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 | [329 01-05 02:50:24.99 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 | [223 01-05 02:50:23.92 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 | [313 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c41b0ef0]sending state message INIT -orderer.example.com | [224 01-05 02:50:23.92 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 0xc4201394f8 principal matched by identity 0 -peer1.org2.example.com | [39c 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [32a 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [533d3c58]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [32e 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [285c7f7c]sending state message INIT -peer1.org1.example.com | [314 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c41b0ef0]Received message INIT from shim -orderer.example.com | [225 01-05 02:50:23.92 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 b0 25 59 62 0a 69 16 2d 1a 73 54 d6 c2 9c c1 40 |.%Yb.i.-.sT....@| -peer1.org2.example.com | [39d 01-05 02:50:31.26 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 | [32b 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [533d3c58]Move state message INIT -peer0.org1.example.com | [32f 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Received message INIT from shim -peer1.org1.example.com | [315 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c41b0ef0]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 00000010 c8 cb 8f 54 00 f6 9c 7a b2 af 14 fd d9 59 88 7e |...T...z.....Y.~| -peer1.org2.example.com | [39e 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [330 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [285c7f7c]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | [226 01-05 02:50:23.92 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 90 62 2c d6 17 93 c8 73 73 bc 59 |0E.!..b,....ss.Y| -peer0.org2.example.com | [32c 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [533d3c58]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [316 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [331 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [39f 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [32d 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 00000010 29 40 e1 c8 2a b7 2b 92 f4 d1 46 46 e4 d4 d5 d0 |)@..*.+...FF....| -peer0.org1.example.com | [332 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [285c7f7c]Received INIT, initializing chaincode -peer1.org1.example.com | [317 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c41b0ef0]Received INIT, initializing chaincode -peer1.org2.example.com | [3a0 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [32e 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [533d3c58]sending state message INIT -orderer.example.com | 00000020 80 b1 59 cb 7c 02 20 51 ae 2e 20 9e 0b b9 0f 35 |..Y.|. Q.. ....5| -peer0.org1.example.com | [333 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [3a1 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [318 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c41b0ef0]Init get response status: 200 -peer0.org2.example.com | [32f 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [533d3c58]Received message INIT from shim -peer0.org1.example.com | [334 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Init get response status: 200 -orderer.example.com | 00000030 71 a6 31 79 ef d0 b4 8e db 72 a0 35 fe 8f e4 9e |q.1y.....r.5....| -peer1.org1.example.com | [319 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c41b0ef0]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [3a2 01-05 02:50:31.28 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 | [330 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [533d3c58]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [31a 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c41b0ef0]Move state message COMPLETED -orderer.example.com | 00000040 c9 15 7c c8 d6 72 4e |..|..rN| -peer0.org1.example.com | [335 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [3a3 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [331 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [31b 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c41b0ef0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [336 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Move state message COMPLETED -orderer.example.com | [227 01-05 02:50:23.92 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 0xc4201394f8 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [3a4 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [337 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [285c7f7c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [332 01-05 02:50:24.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [533d3c58]Received INIT, initializing chaincode -peer0.org1.example.com | [338 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]send state message COMPLETED -peer1.org1.example.com | [31c 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c41b0ef0]send state message COMPLETED -orderer.example.com | [228 01-05 02:50:23.92 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 0xc4201394f8 gate 1515120623919819800 evaluation succeeds -peer0.org1.example.com | [339 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [285c7f7c]Received message COMPLETED from shim -peer0.org2.example.com | [333 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [3a5 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [33a 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [285c7f7c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [229 01-05 02:50:23.92 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 | [31d 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c41b0ef0]Received message COMPLETED from shim -peer0.org2.example.com | [334 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [533d3c58]Init get response status: 200 -peer1.org2.example.com | [3a6 01-05 02:50:31.29 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 | [33b 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [285c7f7c-3513-40c6-a09c-297f24457c10]HandleMessage- COMPLETED. Notify -orderer.example.com | [22a 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [31e 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c41b0ef0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [33c 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:285c7f7c-3513-40c6-a09c-297f24457c10, channelID:businesschannel -peer1.org2.example.com | [3a7 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [335 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [533d3c58]Init succeeded. Sending COMPLETED -orderer.example.com | [22b 01-05 02:50:23.92 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 | [3a8 01-05 02:50:31.29 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 | [33d 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [336 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [533d3c58]Move state message COMPLETED -peer1.org1.example.com | [31f 01-05 02:50:24.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c41b0ef0-7972-44f3-862e-d870231b6423]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [33e 01-05 02:50:24.54 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 | [22c 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -peer1.org2.example.com | [3a9 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [33f 01-05 02:50:24.54 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 [285c7f7c-3513-40c6-a09c-297f24457c10] -peer0.org2.example.com | [337 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [533d3c58]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [320 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c41b0ef0-7972-44f3-862e-d870231b6423, channelID:businesschannel -peer0.org1.example.com | [340 01-05 02:50:24.54 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 | [338 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [533d3c58]send state message COMPLETED -orderer.example.com | [22d 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [3aa 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [321 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [341 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [339 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [533d3c58]Received message COMPLETED from shim -peer0.org1.example.com | [342 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -orderer.example.com | [22e 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [3ab 01-05 02:50:31.29 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 | [322 01-05 02:50:24.77 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 | [33a 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [533d3c58]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [343 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer1.org2.example.com | [3ac 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [22f 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [323 01-05 02:50:24.77 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 [c41b0ef0-7972-44f3-862e-d870231b6423] -peer0.org2.example.com | [33b 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [533d3c58-c231-4d72-9a07-0e4648780bdd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [344 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [3ad 01-05 02:50:31.29 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 | [230 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [324 01-05 02:50:24.77 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 | [345 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org2.example.com | [33c 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:533d3c58-c231-4d72-9a07-0e4648780bdd, channelID:businesschannel -orderer.example.com | [231 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [346 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer1.org2.example.com | [3ae 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [33d 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [325 01-05 02:50:24.77 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 = [f91520ba-fb40-42a6-b5da-1cc2c8a7aa24] -peer0.org1.example.com | [347 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [33e 01-05 02:50:25.00 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.org1.example.com | [348 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]Move state message COMPLETED -peer1.org2.example.com | [3af 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [232 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [33f 01-05 02:50:25.00 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 [533d3c58-c231-4d72-9a07-0e4648780bdd] -peer1.org1.example.com | [326 01-05 02:50:24.77 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=f91520ba-fb40-42a6-b5da-1cc2c8a7aa24,syscc=true,proposal=0x0,canname=qscc:1.1.0 -peer0.org1.example.com | [349 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [871adebd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [340 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC -> INFO system chaincode (rscc,github.com/hyperledger/fabric/core/chaincode/rscc) disabled -peer1.org1.example.com | [327 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.1.0 -orderer.example.com | [233 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [3b0 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [34a 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]send state message COMPLETED -peer0.org1.example.com | [34b 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [871adebd]Received message COMPLETED from shim -peer0.org2.example.com | [341 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [342 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [343 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org2.example.com | [344 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [345 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org2.example.com | [346 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org2.example.com | [347 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a06c0544]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [348 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a06c0544]Move state message COMPLETED -peer0.org2.example.com | [349 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a06c0544]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [34a 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a06c0544]send state message COMPLETED -peer0.org2.example.com | [34b 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a06c0544]Received message COMPLETED from shim -peer0.org2.example.com | [34c 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a06c0544]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [34d 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a06c0544579039d2d01eb5441731c45c2f9b18f21c9fe64c6635c8b2cdfc7ce8]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [34e 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a06c0544579039d2d01eb5441731c45c2f9b18f21c9fe64c6635c8b2cdfc7ce8, channelID: -peer0.org2.example.com | [34f 01-05 02:50:25.00 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 | [350 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [351 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [352 01-05 02:50:25.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:46730) -peer0.org2.example.com | [353 01-05 02:50:30.98 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 | [354 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer0.org2.example.com | [355 01-05 02:50:30.99 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 | [356 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | [357 01-05 02:50:30.99 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 02:50:30.99 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org2.example.com | [359 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org2.example.com | [35a 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org2.example.com | [35b 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [328 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [3b1 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [3b2 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [3b3 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [35c 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [329 01-05 02:50:24.77 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 | [32a 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f91520ba]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [32b 01-05 02:50:24.77 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 | [32c 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f91520ba]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [32d 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f91520ba]Move state message INIT -peer0.org1.example.com | [34c 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [871adebd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [234 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [3b4 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [32e 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f91520ba]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [34d 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [35d 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4223e1ee0 env 0xc42239fce0 txn 0 -peer1.org2.example.com | [3b5 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [235 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [32f 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [34e 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294, channelID: -peer0.org1.example.com | [34f 01-05 02:50:24.55 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 | [350 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [351 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [352 01-05 02:50:24.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:54456) -peer0.org1.example.com | [353 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54472 -peer0.org1.example.com | [354 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224f5560 -peer0.org1.example.com | [355 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [356 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [357 01-05 02:50:30.33 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 | [358 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [359 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [35a 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224c78b0, header 0xc4224f5590 -peer0.org1.example.com | [35b 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [3b6 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [35c 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d -peer1.org1.example.com | [330 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f91520ba]sending state message INIT -orderer.example.com | [236 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [35e 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42239fce0 -peer1.org2.example.com | [3b7 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [3b8 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [3b9 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [3ba 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [3bb 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [3bc 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [3bd 01-05 02:50:31.29 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 | [3be 01-05 02:50:31.29 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 | [3bf 01-05 02:50:31.29 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 | [3c0 01-05 02:50:31.29 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [3c1 01-05 02:50:31.29 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 | [3c2 01-05 02:50:31.29 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 | [3c3 01-05 02:50:31.29 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 | [3c4 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [3c5 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [3c6 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [331 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f91520ba]Received message INIT from shim -peer0.org2.example.com | [35f 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -peer0.org2.example.com | [360 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [361 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [362 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer0.org2.example.com | [363 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [3c7 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [35d 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d channel id: -peer1.org1.example.com | [332 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f91520ba]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [364 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [365 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422465000, header channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -peer0.org1.example.com | [35e 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [237 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [333 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [3c8 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [3c9 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [3ca 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [366 01-05 02:50:31.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [238 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [35f 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d channel id: version: 1.1.0 -peer1.org1.example.com | [334 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f91520ba]Received INIT, initializing chaincode -peer1.org2.example.com | [3cb 01-05 02:50:31.30 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [239 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [367 01-05 02:50:31.03 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 | [360 01-05 02:50:30.33 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=96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d,syscc=true,proposal=0xc4224c78b0,canname=lscc:1.1.0 -peer1.org1.example.com | [335 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [3cc 01-05 02:50:31.30 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 | [368 01-05 02:50:31.03 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 | [23a 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [336 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f91520ba]Init get response status: 200 -peer0.org1.example.com | [361 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [3cd 01-05 02:50:31.30 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 | [369 01-05 02:50:31.04 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 | [23b 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [337 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f91520ba]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [36a 01-05 02:50:31.04 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 | [36b 01-05 02:50:31.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [362 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [23c 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 | [338 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f91520ba]Move state message COMPLETED -peer1.org2.example.com | [3ce 01-05 02:50:31.30 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 | [363 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [364 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [96217dd5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [365 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [366 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [367 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [96217dd5]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [368 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96217dd5]Move state message TRANSACTION -peer0.org1.example.com | [369 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [96217dd5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [23d 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [23e 01-05 02:50:23.92 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 | [36c 01-05 02:50:31.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer1.org2.example.com | [3cf 01-05 02:50:31.30 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 | [3d0 01-05 02:50:31.30 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 | [3d1 01-05 02:50:31.31 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 | [3d2 01-05 02:50:31.31 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 | [3d3 01-05 02:50:31.31 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 | [3d4 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [3d5 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [3d6 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [3d7 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [339 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f91520ba]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [33a 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f91520ba]send state message COMPLETED -peer1.org1.example.com | [33b 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f91520ba]Received message COMPLETED from shim -peer0.org1.example.com | [36a 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [36b 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96217dd5]sending state message TRANSACTION -peer0.org1.example.com | [36c 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]Received message TRANSACTION from shim -peer0.org1.example.com | [36d 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96217dd5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [36e 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [96217dd5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [36f 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [36d 01-05 02:50:31.04 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 | [3d8 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [3d9 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [33c 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f91520ba]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [370 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]Move state message COMPLETED -peer0.org2.example.com | [36e 01-05 02:50:31.04 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 | [23f 01-05 02:50:23.92 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 02:50:31.31 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 | [33d 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f91520ba-fb40-42a6-b5da-1cc2c8a7aa24]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [371 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96217dd5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [240 01-05 02:50:23.92 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 | [370 01-05 02:50:31.04 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 | [33e 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f91520ba-fb40-42a6-b5da-1cc2c8a7aa24, channelID:businesschannel -peer1.org2.example.com | [3db 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [372 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]send state message COMPLETED -peer1.org1.example.com | [33f 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [371 01-05 02:50:31.04 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 | [241 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3dc 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [373 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96217dd5]Received message COMPLETED from shim -peer1.org1.example.com | [340 01-05 02:50:24.77 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 | [242 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [341 01-05 02:50:24.77 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 [f91520ba-fb40-42a6-b5da-1cc2c8a7aa24] -peer1.org2.example.com | [3dd 01-05 02:50:31.32 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 | [36f 01-05 02:50:31.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer1.org1.example.com | [342 01-05 02:50:24.77 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 | [374 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [96217dd5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [243 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [372 01-05 02:50:31.04 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 | [3de 01-05 02:50:31.32 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 | [343 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [373 01-05 02:50:31.04 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 | [375 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d]HandleMessage- COMPLETED. Notify -orderer.example.com | [244 01-05 02:50:23.92 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 | [344 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [3df 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [245 01-05 02:50:23.92 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 | [345 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org2.example.com | [374 01-05 02:50:31.04 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 | [3e0 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [376 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d, channelID: -peer1.org1.example.com | [346 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [246 01-05 02:50:23.92 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.org2.example.com | [3e1 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421968b20 env 0xc421891980 txn 0 -peer1.org1.example.com | [347 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org1.example.com | [377 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [375 01-05 02:50:31.04 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 | [348 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -orderer.example.com | [247 01-05 02:50:23.92 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 | [3e2 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [349 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23bb63b8]Transaction completed. Sending COMPLETED -orderer.example.com | [248 01-05 02:50:23.92 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 | [378 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [376 01-05 02:50:31.04 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 | [3e3 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [34a 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23bb63b8]Move state message COMPLETED -peer0.org1.example.com | [379 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [377 01-05 02:50:31.04 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 | [3e4 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [34b 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23bb63b8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [249 01-05 02:50:23.92 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 | [37a 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54472) -peer1.org1.example.com | [34c 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23bb63b8]send state message COMPLETED -peer0.org2.example.com | [378 01-05 02:50:31.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [3e5 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer1.org1.example.com | [34d 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23bb63b8]Received message COMPLETED from shim -orderer.example.com | [24a 01-05 02:50:23.92 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 | [37b 01-05 02:50:30.52 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 | [379 01-05 02:50:31.04 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 | [34e 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [23bb63b8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [3e6 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | [24b 01-05 02:50:23.92 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 | [37a 01-05 02:50:31.04 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 | [34f 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [23bb63b8d9fa679d6507fe7c59c345a357798a007191d0f80348d601c023e71f]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [37c 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [3e7 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -orderer.example.com | [24c 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [37b 01-05 02:50:31.05 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 | [350 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:23bb63b8d9fa679d6507fe7c59c345a357798a007191d0f80348d601c023e71f, channelID: -peer0.org1.example.com | [37d 01-05 02:50:30.53 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 | [3e8 01-05 02:50:31.32 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 | [37c 01-05 02:50:31.05 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 | [351 01-05 02:50:24.77 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 | [24d 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [37e 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | [37d 01-05 02:50:31.05 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 | [3e9 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org1.example.com | [352 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [3ea 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org2.example.com | [3eb 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -orderer.example.com | [24e 01-05 02:50:23.92 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.org1.example.com | [353 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [37f 01-05 02:50:30.53 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 | [37e 01-05 02:50:31.05 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 | [24f 01-05 02:50:23.92 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.org2.example.com | [3ec 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [3ed 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [354 01-05 02:50:24.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36404) -peer0.org2.example.com | [37f 01-05 02:50:31.05 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 | [380 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -orderer.example.com | [250 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [251 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [252 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [253 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [3ee 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [355 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [380 01-05 02:50:31.05 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 | [254 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org1.example.com | [381 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -peer1.org2.example.com | [3ef 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [356 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [381 01-05 02:50:31.05 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 | [382 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer1.org2.example.com | [3f0 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3f1 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [383 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer1.org1.example.com | [357 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4227988a0 env 0xc4226c11d0 txn 0 -peer1.org1.example.com | [358 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4226c11d0 -peer0.org2.example.com | [382 01-05 02:50:31.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [383 01-05 02:50:31.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [384 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [359 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -peer1.org2.example.com | [3f2 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [384 01-05 02:50:31.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [385 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer1.org1.example.com | [35a 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [3f3 01-05 02:50:31.33 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 | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org2.example.com | [385 01-05 02:50:31.05 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 | [3f4 01-05 02:50:31.33 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-05 02:50:31.33 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 | [386 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422632e40 env 0xc4225e7a40 txn 0 -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [35b 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [386 01-05 02:50:31.05 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 | [3f6 01-05 02:50:31.33 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 | [387 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225e7a40 -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org1.example.com | [35c 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org2.example.com | [3f7 01-05 02:50:31.33 UTC] [github.com/hyperledger/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 | [387 01-05 02:50:31.05 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 | [388 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer1.org2.example.com | [3f8 01-05 02:50:31.33 UTC] [github.com/hyperledger/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 | [35d 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [388 01-05 02:50:31.05 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 | [389 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org2.example.com | [3f9 01-05 02:50:31.33 UTC] [github.com/hyperledger/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 | [35e 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [389 01-05 02:50:31.05 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 | [3fa 01-05 02:50:31.33 UTC] [github.com/hyperledger/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.org1.example.com | [38a 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [35f 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4227b0000, header channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -peer0.org2.example.com | [38a 01-05 02:50:31.05 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 | [3fb 01-05 02:50:31.33 UTC] [github.com/hyperledger/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 | [255 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [38b 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org1.example.com | [360 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [38b 01-05 02:50:31.05 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 | [38c 01-05 02:50:31.05 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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [38c 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [3fc 01-05 02:50:31.33 UTC] [github.com/hyperledger/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 | [38d 01-05 02:50:31.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [361 01-05 02:50:30.56 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 | [3fd 01-05 02:50:31.33 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 | [38d 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [362 01-05 02:50:30.56 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 | [3fe 01-05 02:50:31.33 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 | [38e 01-05 02:50:31.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3ff 01-05 02:50:31.33 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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [38f 01-05 02:50:31.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [363 01-05 02:50:30.56 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 | [400 01-05 02:50:31.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [38e 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4226f3000, header channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org2.example.com | [390 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [364 01-05 02:50:30.56 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 | [38f 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [365 01-05 02:50:30.56 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 | [391 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [392 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [390 01-05 02:50:30.55 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 | [366 01-05 02:50:30.56 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 | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [401 01-05 02:50:31.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [393 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [391 01-05 02:50:30.55 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 | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org1.example.com | [367 01-05 02:50:30.56 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 | [402 01-05 02:50:31.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [392 01-05 02:50:30.55 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 | [394 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [368 01-05 02:50:30.56 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 | [403 01-05 02:50:31.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [393 01-05 02:50:30.55 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 | [395 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [369 01-05 02:50:30.56 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 | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org2.example.com | [404 01-05 02:50:31.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [394 01-05 02:50:30.55 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 | [396 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer1.org2.example.com | [405 01-05 02:50:31.35 UTC] [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 | [395 01-05 02:50:30.55 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 | [36a 01-05 02:50:30.56 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 | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer0.org2.example.com | [397 01-05 02:50:31.06 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 02:50:31.35 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 | [36b 01-05 02:50:30.56 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 | -----END CERTIFICATE----- -peer0.org1.example.com | [397 01-05 02:50:30.55 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 | [398 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [36c 01-05 02:50:30.56 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 | [407 01-05 02:50:31.35 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 | [256 01-05 02:50:23.92 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 -peer0.org2.example.com | [399 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [398 01-05 02:50:30.55 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 | [36d 01-05 02:50:30.56 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 | [408 01-05 02:50:31.35 UTC] [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 | [39a 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [257 01-05 02:50:23.92 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 | [36e 01-05 02:50:30.56 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 | [409 01-05 02:50:31.36 UTC] [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 | [39b 01-05 02:50:31.06 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 | [399 01-05 02:50:30.55 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 | [258 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [36f 01-05 02:50:30.56 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 | [39c 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [39a 01-05 02:50:30.55 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 | [40a 01-05 02:50:31.36 UTC] [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 | [370 01-05 02:50:30.56 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 | [259 01-05 02:50:23.92 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 | [39d 01-05 02:50:31.06 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 | [39b 01-05 02:50:30.55 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 | [40b 01-05 02:50:31.36 UTC] [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 | [25a 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [371 01-05 02:50:30.56 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 | [39e 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [39c 01-05 02:50:30.55 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 | [40c 01-05 02:50:31.36 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 | [25b 01-05 02:50:23.92 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 | [39f 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [372 01-05 02:50:30.56 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 | [25c 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [39d 01-05 02:50:30.55 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 | [40d 01-05 02:50:31.36 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 | [373 01-05 02:50:30.56 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 | [3a0 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [25d 01-05 02:50:23.92 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 | [25e 01-05 02:50:23.92 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 | [40e 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [39e 01-05 02:50:30.55 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 | [25f 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [3a1 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [40f 01-05 02:50:31.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/Orderer -peer1.org1.example.com | [374 01-05 02:50:30.56 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 | [375 01-05 02:50:30.56 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 | [260 01-05 02:50:23.92 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 | [3a2 01-05 02:50:31.06 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 | [39f 01-05 02:50:30.55 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 | [376 01-05 02:50:30.56 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 | [261 01-05 02:50:23.92 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 | [410 01-05 02:50:31.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/Orderer/OrdererOrg -peer0.org2.example.com | [3a3 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [377 01-05 02:50:30.56 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 | [262 01-05 02:50:23.92 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 | [396 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -peer1.org2.example.com | [411 01-05 02:50:31.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: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [3a4 01-05 02:50:31.06 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 | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [378 01-05 02:50:30.56 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [3a0 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [412 01-05 02:50:31.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/Orderer/OrdererOrg/Writers -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [379 01-05 02:50:30.56 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 | [3a5 01-05 02:50:31.06 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer1.org2.example.com | [413 01-05 02:50:31.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/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [3a1 01-05 02:50:30.55 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 | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [3a6 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [37a 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [3a2 01-05 02:50:30.55 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 | [3a7 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [37b 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [414 01-05 02:50:31.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/Orderer/OrdererOrg/Readers -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer0.org2.example.com | [3a8 01-05 02:50:31.06 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 | [3a3 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [37c 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | [415 01-05 02:50:31.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: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [3a4 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [3a9 01-05 02:50:31.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [37d 01-05 02:50:30.56 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 | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer1.org2.example.com | [416 01-05 02:50:31.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: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer0.org2.example.com | [3aa 01-05 02:50:31.06 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 | [3a5 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [37e 01-05 02:50:30.56 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 | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org2.example.com | [417 01-05 02:50:31.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: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [3a6 01-05 02:50:30.55 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 | vA2BLfriqQ== -peer0.org2.example.com | [3ab 01-05 02:50:31.06 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 | [418 01-05 02:50:31.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: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [37f 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [3ac 01-05 02:50:31.07 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 | [3a7 01-05 02:50:30.55 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 | [380 01-05 02:50:30.56 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 | [263 01-05 02:50:23.92 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 | [419 01-05 02:50:31.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: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [3ad 01-05 02:50:31.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [3a8 01-05 02:50:30.56 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 | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [381 01-05 02:50:30.56 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 | [3ae 01-05 02:50:31.07 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [41a 01-05 02:50:31.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/Orderer/Writers -peer0.org2.example.com | [3af 01-05 02:50:31.07 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 | [3a9 01-05 02:50:30.56 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [382 01-05 02:50:30.56 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 | [41b 01-05 02:50:31.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/Orderer/BlockValidation -peer0.org1.example.com | [3aa 01-05 02:50:30.56 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org1.example.com | [383 01-05 02:50:30.56 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 | [3b0 01-05 02:50:31.07 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [3ab 01-05 02:50:30.56 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | [3b1 01-05 02:50:31.07 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 | [384 01-05 02:50:30.56 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org2.example.com | [3b2 01-05 02:50:31.07 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 | [385 01-05 02:50:30.56 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 | [3ac 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [41c 01-05 02:50:31.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/Orderer/Admins -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org1.example.com | [386 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [3b3 01-05 02:50:31.07 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 | [41d 01-05 02:50:31.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/Orderer/Readers -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org1.example.com | [3ad 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [387 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org2.example.com | [3b4 01-05 02:50:31.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [41e 01-05 02:50:31.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 -peer1.org1.example.com | [388 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [3ae 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org2.example.com | [3b5 01-05 02:50:31.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [41f 01-05 02:50:31.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/Org1MSP -peer0.org1.example.com | [3af 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [389 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [420 01-05 02:50:31.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: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [3b6 01-05 02:50:31.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [3b0 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [264 01-05 02:50:23.92 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.org2.example.com | [3b7 01-05 02:50:31.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [38a 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [421 01-05 02:50:31.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: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [3b8 01-05 02:50:31.08 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 | [265 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [3b1 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [38b 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3b9 01-05 02:50:31.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [266 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [422 01-05 02:50:31.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/Writers -peer0.org1.example.com | [3b2 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [38c 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [3ba 01-05 02:50:31.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [423 01-05 02:50:31.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/Admins -orderer.example.com | [267 01-05 02:50:23.92 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 | [3b3 01-05 02:50:30.57 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 | [3bb 01-05 02:50:31.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [3bc 01-05 02:50:31.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [38d 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [268 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3b4 01-05 02:50:30.57 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 | [424 01-05 02:50:31.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.org2.example.com | [3bd 01-05 02:50:31.08 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 | [38e 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [269 01-05 02:50:23.92 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 | [425 01-05 02:50:31.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 -peer0.org1.example.com | [3b5 01-05 02:50:30.57 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 | [38f 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [3be 01-05 02:50:31.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 -orderer.example.com | [26a 01-05 02:50:23.92 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.org1.example.com | [3b6 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [426 01-05 02:50:31.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: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [390 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [3bf 01-05 02:50:31.08 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 | [3b7 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [26b 01-05 02:50:23.92 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 | [391 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [427 01-05 02:50:31.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/Org2MSP/Admins -peer0.org2.example.com | [3c0 01-05 02:50:31.08 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 | [3b8 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [26c 01-05 02:50:23.92 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 | [392 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3c1 01-05 02:50:31.08 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 | [3b9 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [393 01-05 02:50:30.57 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 | [3c2 01-05 02:50:31.08 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 | [3ba 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [428 01-05 02:50:31.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/Org2MSP/Readers -peer1.org1.example.com | [394 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [26d 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [3bb 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3c3 01-05 02:50:31.08 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 | [429 01-05 02:50:31.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/Org2MSP/Writers -orderer.example.com | [26e 01-05 02:50:23.92 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 | [3bc 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [3c4 01-05 02:50:31.08 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 | [42a 01-05 02:50:31.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: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [395 01-05 02:50:30.57 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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [3bd 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [3c5 01-05 02:50:31.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.org1.example.com | [396 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [42b 01-05 02:50:31.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/Writers -peer0.org1.example.com | [3be 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [3c6 01-05 02:50:31.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 -peer1.org1.example.com | [397 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [398 01-05 02:50:30.57 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 | [42c 01-05 02:50:31.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/Admins -peer0.org2.example.com | [3c7 01-05 02:50:31.09 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 | [3bf 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [3c8 01-05 02:50:31.09 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 | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [42d 01-05 02:50:31.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/Readers -peer0.org1.example.com | [3c0 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [3c1 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [3c2 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [3c3 01-05 02:50:30.57 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 | [3c4 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3c9 01-05 02:50:31.09 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 | [42e 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [399 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [3c5 01-05 02:50:30.57 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 | [3ca 01-05 02:50:31.09 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 | [3cb 01-05 02:50:31.09 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 | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org2.example.com | [42f 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [3cc 01-05 02:50:31.09 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 | [39a 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [3c6 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [430 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [3cd 01-05 02:50:31.09 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 | [3c7 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [39b 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [431 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer0.org2.example.com | [3ce 01-05 02:50:31.09 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 | [3c8 01-05 02:50:30.57 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 | [432 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [39c 01-05 02:50:30.57 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 | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org2.example.com | [3cf 01-05 02:50:31.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [3c9 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [433 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org2.example.com | [3d0 01-05 02:50:31.09 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 | [39d 01-05 02:50:30.57 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 | [3ca 01-05 02:50:30.57 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 | [434 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | oQmWQsjpiQ== -peer0.org1.example.com | [3cb 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [435 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [39e 01-05 02:50:30.57 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 | [3d1 01-05 02:50:31.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [3cc 01-05 02:50:30.57 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 | [436 01-05 02:50:31.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [39f 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3cd 01-05 02:50:30.57 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 | [437 01-05 02:50:31.37 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 | [3d2 01-05 02:50:31.09 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 | [26f 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [3a0 01-05 02:50:30.57 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 | [438 01-05 02:50:31.37 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 | [3ce 01-05 02:50:30.57 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 | [3d3 01-05 02:50:31.09 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [3a1 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [439 01-05 02:50:31.37 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 | [3cf 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3d4 01-05 02:50:31.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [43a 01-05 02:50:31.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [3d5 01-05 02:50:31.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [3a2 01-05 02:50:30.58 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 | [3d0 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [43b 01-05 02:50:31.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 | [3d6 01-05 02:50:31.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [43c 01-05 02:50:31.37 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 | [3d1 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org2.example.com | [3d7 01-05 02:50:31.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [43d 01-05 02:50:31.37 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 | [3a3 01-05 02:50:30.58 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [3d2 01-05 02:50:30.57 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 | [3d8 01-05 02:50:31.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 | [43e 01-05 02:50:31.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 [1] -peer1.org1.example.com | [3a4 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [3d3 01-05 02:50:30.57 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 | [43f 01-05 02:50:31.37 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{0x6e, 0x36, 0x5e, 0xcb, 0x4a, 0x54, 0xb9, 0x4f, 0xf6, 0xc, 0xda, 0xc9, 0x43, 0xd5, 0x11, 0x89, 0xbd, 0x9d, 0x34, 0x76, 0x3d, 0x5b, 0x15, 0x8b, 0xdc, 0xb4, 0xab, 0x31, 0x57, 0x48, 0xae, 0x94} txOffsets= -peer1.org1.example.com | [3a5 01-05 02:50:30.58 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 | [3d9 01-05 02:50:31.10 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [3d4 01-05 02:50:30.58 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 | txId= locPointer=offset=70, bytesLength=12093 -peer1.org1.example.com | [3a6 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [3da 01-05 02:50:31.10 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 | ] -peer0.org1.example.com | [3d5 01-05 02:50:30.58 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org2.example.com | [3db 01-05 02:50:31.11 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [440 01-05 02:50:31.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=12192, bytesLength=12093] for tx ID: [] to index -peer1.org1.example.com | [3a7 01-05 02:50:30.58 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 | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer1.org2.example.com | [441 01-05 02:50:31.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=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [3dc 01-05 02:50:31.12 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [3a8 01-05 02:50:30.58 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 | [3d6 01-05 02:50:30.58 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 | [442 01-05 02:50:31.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=[26080], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org2.example.com | [443 01-05 02:50:31.38 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -peer0.org2.example.com | [3dd 01-05 02:50:31.13 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 | [3d7 01-05 02:50:30.58 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 | [3a9 01-05 02:50:30.58 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 | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [444 01-05 02:50:31.38 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 | [3d8 01-05 02:50:30.58 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 | [3de 01-05 02:50:31.13 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 | [3aa 01-05 02:50:30.58 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 | [445 01-05 02:50:31.38 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 | [3d9 01-05 02:50:30.58 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 | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org1.example.com | [3ab 01-05 02:50:30.58 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 | [446 01-05 02:50:31.38 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 | [3df 01-05 02:50:31.13 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 | [3da 01-05 02:50:30.58 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 | [3ac 01-05 02:50:30.58 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 | [447 01-05 02:50:31.38 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 | [3e0 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [3db 01-05 02:50:30.58 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 | [448 01-05 02:50:31.38 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 | [3ad 01-05 02:50:30.58 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 | [3e1 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4223e1ee0 env 0xc42239fce0 txn 0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [3dc 01-05 02:50:30.58 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 | [449 01-05 02:50:31.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)=[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 | [3e2 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [3ae 01-05 02:50:30.58 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 | [270 01-05 02:50:23.92 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 | [3dd 01-05 02:50:30.58 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 | [3e3 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [44a 01-05 02:50:31.38 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 | [3af 01-05 02:50:30.58 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 | [271 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org2.example.com | [3e4 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [44b 01-05 02:50:31.39 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 | [3de 01-05 02:50:30.58 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 | [272 01-05 02:50:23.92 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 | [3e5 01-05 02:50:31.13 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 | [3b0 01-05 02:50:30.58 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 | [44c 01-05 02:50:31.39 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 | [3df 01-05 02:50:30.58 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 | [3e6 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [3b1 01-05 02:50:30.58 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 | [273 01-05 02:50:23.92 UTC] [github.com/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 | [44d 01-05 02:50:31.39 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 | [3e7 01-05 02:50:31.13 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 | [3e0 01-05 02:50:30.58 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 | [3b2 01-05 02:50:30.58 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 | [3e8 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [44e 01-05 02:50:31.39 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 | [274 01-05 02:50:23.92 UTC] [github.com/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 -peer0.org1.example.com | [3e1 01-05 02:50:30.58 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 | [3b3 01-05 02:50:30.58 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 | [275 01-05 02:50:23.92 UTC] [github.com/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.org2.example.com | [44f 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [3e9 01-05 02:50:31.13 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 | [3e2 01-05 02:50:30.58 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 | [3b4 01-05 02:50:30.58 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 | [450 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [276 01-05 02:50:23.92 UTC] [github.com/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 | [3e3 01-05 02:50:30.58 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 | [3ea 01-05 02:50:31.13 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 | [3b5 01-05 02:50:30.58 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 | [451 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [277 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [3e4 01-05 02:50:30.58 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 | [452 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [3b6 01-05 02:50:30.58 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 | [278 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [3eb 01-05 02:50:31.13 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 | [3b7 01-05 02:50:30.58 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 | [3e5 01-05 02:50:30.58 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 | [453 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [3ec 01-05 02:50:31.13 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 | [279 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer1.org1.example.com | [3b8 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [454 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [3ed 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [3b9 01-05 02:50:30.58 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 | [3e6 01-05 02:50:30.58 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 | [27a 01-05 02:50:23.92 UTC] [github.com/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 | [455 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [3ee 01-05 02:50:31.13 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [3ba 01-05 02:50:30.58 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 | [3e7 01-05 02:50:30.58 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 | [27b 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer1.org1.example.com | [3bb 01-05 02:50:30.58 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 | [456 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [3bc 01-05 02:50:30.58 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 | [27c 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [3e8 01-05 02:50:30.58 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 | [3ef 01-05 02:50:31.13 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 | [3bd 01-05 02:50:30.58 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 | [3e9 01-05 02:50:30.58 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 | [457 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [27d 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [3f0 01-05 02:50:31.13 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 | [3f1 01-05 02:50:31.13 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 | [3f2 01-05 02:50:31.13 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 | [3f3 01-05 02:50:31.13 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 | [3f4 01-05 02:50:31.13 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 | [3f5 01-05 02:50:31.13 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 | [27e 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [27f 01-05 02:50:23.92 UTC] [github.com/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 | [3ea 01-05 02:50:30.58 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 | [3f6 01-05 02:50:31.13 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 | [3be 01-05 02:50:30.58 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 | [3bf 01-05 02:50:30.58 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 | [280 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org2.example.com | [3f7 01-05 02:50:31.13 UTC] [github.com/hyperledger/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 | [3f8 01-05 02:50:31.13 UTC] [github.com/hyperledger/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 | [3f9 01-05 02:50:31.13 UTC] [github.com/hyperledger/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 | [3c0 01-05 02:50:30.58 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 | [3eb 01-05 02:50:30.58 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 | [281 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org2.example.com | [3fa 01-05 02:50:31.13 UTC] [github.com/hyperledger/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 | [458 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [3c1 01-05 02:50:30.58 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 | [3fb 01-05 02:50:31.13 UTC] [github.com/hyperledger/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 | [3ec 01-05 02:50:30.58 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 | [3ed 01-05 02:50:30.58 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 | [282 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org2.example.com | [3fc 01-05 02:50:31.13 UTC] [github.com/hyperledger/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 | [459 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [45a 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [45b 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42287a040 env 0xc4225a96e0 txn 0 -peer1.org2.example.com | [45c 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225a96e0 -peer1.org2.example.com | [45d 01-05 02:50:31.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -peer0.org1.example.com | [3ee 01-05 02:50:30.58 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 | [3ef 01-05 02:50:30.58 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 | [3c2 01-05 02:50:30.58 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 | [3fd 01-05 02:50:31.13 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 | [3fe 01-05 02:50:31.13 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 | [3ff 01-05 02:50:31.13 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 | [400 01-05 02:50:31.13 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 | [401 01-05 02:50:31.13 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 | [402 01-05 02:50:31.13 UTC] [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 | [403 01-05 02:50:31.13 UTC] [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 | [45e 01-05 02:50:31.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [3c3 01-05 02:50:30.58 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 | [283 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org2.example.com | [404 01-05 02:50:31.13 UTC] [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 | [3f0 01-05 02:50:30.58 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 | [3c4 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [45f 01-05 02:50:31.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [284 01-05 02:50:23.92 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 | [405 01-05 02:50:31.13 UTC] [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 | [406 01-05 02:50:31.13 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 | [407 01-05 02:50:31.13 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 | [3f1 01-05 02:50:30.58 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 | [285 01-05 02:50:23.92 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 | [3c5 01-05 02:50:30.58 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 | [3c6 01-05 02:50:30.58 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 | [3c7 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [460 01-05 02:50:31.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer0.org1.example.com | [3f2 01-05 02:50:30.58 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 | [3c8 01-05 02:50:30.58 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 | [286 01-05 02:50:23.92 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 | [408 01-05 02:50:31.13 UTC] [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 | [3f3 01-05 02:50:30.58 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 | [3c9 01-05 02:50:30.58 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 | [287 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [461 01-05 02:50:31.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [3f4 01-05 02:50:30.58 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 | [3ca 01-05 02:50:30.58 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 | [288 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org2.example.com | [462 01-05 02:50:31.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [409 01-05 02:50:31.13 UTC] [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 | [3f5 01-05 02:50:30.58 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 | [3cb 01-05 02:50:30.58 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 | [289 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [463 01-05 02:50:31.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422898000, header channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -peer0.org2.example.com | [40a 01-05 02:50:31.13 UTC] [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 | [3f6 01-05 02:50:30.58 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 | [3cc 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [28a 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [464 01-05 02:50:31.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [3f7 01-05 02:50:30.58 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 | [40b 01-05 02:50:31.14 UTC] [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 | [3cd 01-05 02:50:30.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [28b 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [3ce 01-05 02:50:30.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [465 01-05 02:50:31.41 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 | [40c 01-05 02:50:31.14 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 | [3f8 01-05 02:50:30.58 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 | [28c 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [3cf 01-05 02:50:30.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [466 01-05 02:50:31.41 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 | [40d 01-05 02:50:31.14 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 | [3f9 01-05 02:50:30.58 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 | [28d 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [3d0 01-05 02:50:30.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [40e 01-05 02:50:31.14 UTC] [github.com/hyperledger/fabric/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 | [467 01-05 02:50:31.41 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 | [28e 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [3d1 01-05 02:50:30.59 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [3fa 01-05 02:50:30.58 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 | [40f 01-05 02:50:31.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: [Group] /Channel/Application -peer1.org2.example.com | [468 01-05 02:50:31.41 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 | [3d2 01-05 02:50:30.59 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 | [28f 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [410 01-05 02:50:31.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: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [3fb 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [469 01-05 02:50:31.41 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 | [290 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [3d3 01-05 02:50:30.59 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 | [411 01-05 02:50:31.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/Application/Org1MSP/MSP -peer1.org2.example.com | [46a 01-05 02:50:31.41 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 | [3fc 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [291 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [3d4 01-05 02:50:30.59 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [412 01-05 02:50:31.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/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [3fd 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [46b 01-05 02:50:31.41 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 | [292 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [3d5 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [413 01-05 02:50:31.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/Application/Org1MSP/Writers -peer0.org1.example.com | [3fe 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [46c 01-05 02:50:31.41 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 | [3d6 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [293 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [414 01-05 02:50:31.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/Application/Org1MSP/Admins -peer0.org1.example.com | [3ff 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [46d 01-05 02:50:31.41 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 | [400 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [3d7 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [294 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [46e 01-05 02:50:31.41 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 | [415 01-05 02:50:31.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/Application/Org1MSP/Readers -peer0.org1.example.com | [401 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [3d8 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [295 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [3d9 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [416 01-05 02:50:31.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: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [46f 01-05 02:50:31.41 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 | [402 01-05 02:50:30.58 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 | [3da 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4227988a0 env 0xc4226c11d0 txn 0 -orderer.example.com | [296 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [417 01-05 02:50:31.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/Application/Org2MSP/MSP -orderer.example.com | [297 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [403 01-05 02:50:30.60 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [470 01-05 02:50:31.41 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 | [3db 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [418 01-05 02:50:31.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/Application/Org2MSP/Admins -orderer.example.com | [298 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [404 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [471 01-05 02:50:31.41 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 | [3dc 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [299 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [419 01-05 02:50:31.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/Application/Org2MSP/Readers -peer1.org2.example.com | [472 01-05 02:50:31.41 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 | [3dd 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [405 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | [29a 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [473 01-05 02:50:31.41 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 | [41a 01-05 02:50:31.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/Application/Org2MSP/Writers -peer1.org1.example.com | [3de 01-05 02:50:30.61 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 | [406 01-05 02:50:30.68 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 | [474 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [29b 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [3df 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [407 01-05 02:50:30.68 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 | [41b 01-05 02:50:31.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/Application/Capabilities -orderer.example.com | [29c 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [475 01-05 02:50:31.41 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 | [408 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [3e0 01-05 02:50:30.61 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 | [476 01-05 02:50:31.41 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 | [41c 01-05 02:50:31.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/Application/Writers -orderer.example.com | [29d 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [409 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422632e40 env 0xc4225e7a40 txn 0 -peer1.org2.example.com | [477 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [40a 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [41d 01-05 02:50:31.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/Application/Admins -peer1.org1.example.com | [3e1 01-05 02:50:30.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 | [29e 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [40b 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [478 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [41e 01-05 02:50:31.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/Application/Readers -peer1.org1.example.com | [3e2 01-05 02:50:30.61 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 | [29f 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [41f 01-05 02:50:31.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: [Group] /Channel/Orderer -peer0.org1.example.com | [40c 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [479 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3e3 01-05 02:50:30.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] -peer0.org2.example.com | [420 01-05 02:50:31.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: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [2a0 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [40d 01-05 02:50:30.68 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 | [47a 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3e4 01-05 02:50:30.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{} -orderer.example.com | [2a1 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [421 01-05 02:50:31.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/OrdererOrg/MSP -peer0.org1.example.com | [40e 01-05 02:50:30.68 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 | [2a2 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [47b 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [422 01-05 02:50:31.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/OrdererOrg/Writers -orderer.example.com | [2a3 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [40f 01-05 02:50:30.68 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 | [3e5 01-05 02:50:30.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 | [2a4 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [423 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [47c 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2a5 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [410 01-05 02:50:30.68 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 | [3e6 01-05 02:50:30.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 = [] -peer0.org2.example.com | [424 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2a6 01-05 02:50:23.93 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 -peer1.org2.example.com | [47d 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [411 01-05 02:50:30.68 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 | [425 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2a7 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [47e 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [2a8 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [412 01-05 02:50:30.68 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 | [3e7 01-05 02:50:30.61 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [426 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2a9 01-05 02:50:23.93 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 | [47f 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2aa 01-05 02:50:23.93 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.org2.example.com | [427 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [413 01-05 02:50:30.68 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 | [3e8 01-05 02:50:30.61 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 | [2ab 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [428 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [414 01-05 02:50:30.68 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 | [480 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3e9 01-05 02:50:30.61 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 | [2ac 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [415 01-05 02:50:30.68 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 | [429 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [481 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [3ea 01-05 02:50:30.61 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 | [2ad 01-05 02:50:23.93 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:47154 -peer0.org1.example.com | [416 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [482 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [3eb 01-05 02:50:30.61 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 | [2ae 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [2af 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [3ec 01-05 02:50:30.61 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 | [2b0 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [2b1 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [483 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [417 01-05 02:50:30.68 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 | [3ed 01-05 02:50:30.61 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 | [42a 01-05 02:50:31.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2b2 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [2b3 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [2b4 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [2b5 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [484 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [418 01-05 02:50:30.68 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 | [3ee 01-05 02:50:30.61 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 | [485 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [42b 01-05 02:50:31.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 -orderer.example.com | [2b6 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [419 01-05 02:50:30.68 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 | [3ef 01-05 02:50:30.61 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 | [486 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [42c 01-05 02:50:31.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 | [2b7 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [41a 01-05 02:50:30.68 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 | [3f0 01-05 02:50:30.61 UTC] [github.com/hyperledger/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 | [487 01-05 02:50:31.41 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 | [41b 01-05 02:50:30.68 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 | [3f1 01-05 02:50:30.61 UTC] [github.com/hyperledger/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 | [2b8 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [42d 01-05 02:50:31.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/Admins -peer0.org1.example.com | [41c 01-05 02:50:30.68 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 | [488 01-05 02:50:31.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3f2 01-05 02:50:30.61 UTC] [github.com/hyperledger/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 | [2b9 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [42e 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [41d 01-05 02:50:30.68 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 | [2ba 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [3f3 01-05 02:50:30.61 UTC] [github.com/hyperledger/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 | [42f 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [41e 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [489 01-05 02:50:31.41 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 | [2bc 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47154: rpc error: code = Canceled desc = context canceled -peer0.org2.example.com | [430 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [3f4 01-05 02:50:30.61 UTC] [github.com/hyperledger/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 | [48a 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [41f 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [2bd 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer1.org1.example.com | [3f5 01-05 02:50:30.61 UTC] [github.com/hyperledger/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 | [48b 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [420 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [431 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [3f6 01-05 02:50:30.61 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 | [421 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [2be 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:47152 because channel businesschannel not found -peer0.org2.example.com | [432 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [48c 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [3f7 01-05 02:50:30.61 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 | [422 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [2bf 01-05 02:50:23.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:47152 -peer1.org1.example.com | [3f8 01-05 02:50:30.61 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 | [433 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [423 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [2c0 01-05 02:50:23.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:47152 -peer1.org2.example.com | [48d 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [3f9 01-05 02:50:30.62 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 | [434 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [424 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [2c1 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47152: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | [48e 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [3fa 01-05 02:50:30.62 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 | [435 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/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 | [2c2 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer1.org2.example.com | [48f 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [3fb 01-05 02:50:30.62 UTC] [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 | [436 01-05 02:50:31.16 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 | [425 01-05 02:50:30.68 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 | [2bb 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [490 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [3fc 01-05 02:50:30.62 UTC] [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 | [437 01-05 02:50:31.16 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 | [2c3 01-05 02:50:23.93 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 | [491 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [3fd 01-05 02:50:30.62 UTC] [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 | [426 01-05 02:50:30.68 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 | [438 01-05 02:50:31.16 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 | [492 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [3fe 01-05 02:50:30.62 UTC] [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 | [439 01-05 02:50:31.16 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 | [2c4 01-05 02:50:23.93 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 | [427 01-05 02:50:30.68 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 | [43a 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [493 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [3ff 01-05 02:50:30.62 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 | [43b 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [2c5 01-05 02:50:23.93 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.org1.example.com | [428 01-05 02:50:30.68 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 | [494 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [43c 01-05 02:50:31.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [400 01-05 02:50:30.62 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 | [2c6 01-05 02:50:23.93 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 | [43d 01-05 02:50:31.16 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 | [429 01-05 02:50:30.68 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 | [495 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [43e 01-05 02:50:31.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -peer1.org1.example.com | [401 01-05 02:50:30.62 UTC] [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 | [2c7 01-05 02:50:23.93 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 | [496 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [43f 01-05 02:50:31.17 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{0x6e, 0x36, 0x5e, 0xcb, 0x4a, 0x54, 0xb9, 0x4f, 0xf6, 0xc, 0xda, 0xc9, 0x43, 0xd5, 0x11, 0x89, 0xbd, 0x9d, 0x34, 0x76, 0x3d, 0x5b, 0x15, 0x8b, 0xdc, 0xb4, 0xab, 0x31, 0x57, 0x48, 0xae, 0x94} txOffsets= -peer1.org1.example.com | [402 01-05 02:50:30.62 UTC] [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 | [42a 01-05 02:50:30.68 UTC] [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 | [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... +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 -peer1.org2.example.com | [497 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [2c8 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [42b 01-05 02:50:30.68 UTC] [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 | [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 | [498 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [403 01-05 02:50:30.62 UTC] [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 | [42c 01-05 02:50:30.68 UTC] [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 | [440 01-05 02:50:31.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=12192, bytesLength=12093] for tx ID: [] to index -peer1.org2.example.com | [499 01-05 02:50:31.42 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [404 01-05 02:50:30.62 UTC] [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 | [441 01-05 02:50:31.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=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [42d 01-05 02:50:30.68 UTC] [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 | [49a 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [442 01-05 02:50:31.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26080], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [42e 01-05 02:50:30.68 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 | [443 01-05 02:50:31.17 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 | [405 01-05 02:50:30.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [49b 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [444 01-05 02:50:31.18 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 | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org1.example.com | [42f 01-05 02:50:30.68 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 | [445 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer1.org1.example.com | [406 01-05 02:50:30.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 Org2MSP -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [49c 01-05 02:50:31.42 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 | [446 01-05 02:50:31.18 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 | [430 01-05 02:50:30.68 UTC] [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 | [447 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [407 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | [431 01-05 02:50:30.68 UTC] [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 | [448 01-05 02:50:31.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 -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [408 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [49d 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [449 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org1.example.com | [432 01-05 02:50:30.68 UTC] [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 | [409 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org1.example.com | [433 01-05 02:50:30.68 UTC] [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 | [44a 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [49e 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer1.org1.example.com | [40a 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [434 01-05 02:50:30.68 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 | [44b 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer1.org2.example.com | [49f 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [40b 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [435 01-05 02:50:30.68 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 | [4a0 01-05 02:50:31.42 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 | [44c 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer1.org1.example.com | [40c 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org2.example.com | [4a1 01-05 02:50:31.42 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 | [436 01-05 02:50:30.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: [Group] /Channel -peer1.org1.example.com | [40d 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4a2 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org2.example.com | [44d 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [437 01-05 02:50:30.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: [Group] /Channel/Orderer -peer1.org1.example.com | [40e 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4a3 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org1.example.com | [438 01-05 02:50:30.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: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [44e 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org1.example.com | [40f 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4a4 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [44f 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [439 01-05 02:50:30.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: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [4a5 01-05 02:50:31.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [410 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2c9 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [450 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [4a6 01-05 02:50:31.42 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 | [411 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [43a 01-05 02:50:30.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/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [451 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [4a7 01-05 02:50:31.43 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 | [412 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [43b 01-05 02:50:30.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/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [4a8 01-05 02:50:31.43 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [43c 01-05 02:50:30.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/Orderer/OrdererOrg/Readers -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [4a9 01-05 02:50:31.43 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 | [452 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [43d 01-05 02:50:30.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: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [413 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4aa 01-05 02:50:31.43 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 | [4ab 01-05 02:50:31.43 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 | [4ac 01-05 02:50:31.43 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 | [414 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [43e 01-05 02:50:30.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: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [4ad 01-05 02:50:31.43 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 | [453 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4ae 01-05 02:50:31.43 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 | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [415 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4af 01-05 02:50:31.43 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 | [454 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [43f 01-05 02:50:30.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: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [4b0 01-05 02:50:31.43 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 | [4b1 01-05 02:50:31.43 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 | [440 01-05 02:50:30.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: [Value] /Channel/Orderer/BatchSize -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org1.example.com | [416 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4b2 01-05 02:50:31.43 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 | [455 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [4b3 01-05 02:50:31.43 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 | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [441 01-05 02:50:30.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: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [4b4 01-05 02:50:31.43 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 | [456 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [417 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org1.example.com | [442 01-05 02:50:30.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/Orderer/BlockValidation -peer1.org2.example.com | [4b5 01-05 02:50:31.43 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 | [457 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4b6 01-05 02:50:31.43 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 | [458 01-05 02:50:31.18 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer1.org1.example.com | [418 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4b7 01-05 02:50:31.43 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 | [459 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [443 01-05 02:50:30.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/Orderer/Admins -peer1.org2.example.com | [4b8 01-05 02:50:31.43 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 | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org2.example.com | [4b9 01-05 02:50:31.43 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 | [444 01-05 02:50:30.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/Orderer/Readers -peer0.org2.example.com | [45b 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421cdaae0 env 0xc422aa32f0 txn 0 -peer1.org1.example.com | [419 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | -----END CERTIFICATE----- -peer1.org2.example.com | [4ba 01-05 02:50:31.43 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 | [41a 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [445 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4bb 01-05 02:50:31.43 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 | [4bc 01-05 02:50:31.43 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 | [41b 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [446 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [45c 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422aa32f0 -orderer.example.com | [2ca 01-05 02:50:23.94 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 | [4bd 01-05 02:50:31.43 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 | [41c 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2cb 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [45a 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [447 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [41d 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4be 01-05 02:50:31.43 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 | [2cc 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [41e 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [41f 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [45d 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -peer1.org2.example.com | [4bf 01-05 02:50:31.43 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 | [448 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [449 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [44a 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [420 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2cd 01-05 02:50:23.94 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 | [45e 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [45f 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [460 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org1.example.com | [421 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [422 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2ce 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [44b 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [461 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4c0 01-05 02:50:31.43 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 | [2cf 01-05 02:50:23.94 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 | [423 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [462 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [2d1 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer1.org1.example.com | [424 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [44c 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [44d 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4c1 01-05 02:50:31.43 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 | [2d2 01-05 02:50:23.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:47156 -peer1.org1.example.com | [425 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [463 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c5a000, header channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -peer0.org1.example.com | [44e 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4c2 01-05 02:50:31.43 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 | [2d3 01-05 02:50:23.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:47156 -orderer.example.com | [2d0 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [2d4 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [2d5 01-05 02:50:23.94 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 | [44f 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [464 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [4c3 01-05 02:50:31.43 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 | [426 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [465 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [2d6 01-05 02:50:23.94 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 | [4c4 01-05 02:50:31.43 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 | [450 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2d7 01-05 02:50:23.94 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 | [466 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [427 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | [451 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [428 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | [2d8 01-05 02:50:23.94 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.org2.example.com | [467 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [4c5 01-05 02:50:31.43 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 | [452 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [429 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | [2d9 01-05 02:50:23.94 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 | [468 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [4c6 01-05 02:50:31.43 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 | [42a 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [453 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [469 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [454 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4c7 01-05 02:50:31.43 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 | [42b 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [455 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [42c 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | [46a 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [456 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | [4c8 01-05 02:50:31.43 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 | [42d 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | [46b 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [457 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | [42e 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/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 | [4c9 01-05 02:50:31.43 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 | [458 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [42f 01-05 02:50:30.63 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-05 02:50:31.19 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 | [459 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | [4ca 01-05 02:50:31.43 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 | [430 01-05 02:50:30.63 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 | [46d 01-05 02:50:31.19 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 | [45a 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | [431 01-05 02:50:30.63 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 | [4cb 01-05 02:50:31.43 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 | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [46e 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [45b 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | [432 01-05 02:50:30.63 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 | [45c 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | [4cc 01-05 02:50:31.43 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 | [433 01-05 02:50:30.63 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 | [46f 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [45d 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 | [4cd 01-05 02:50:31.43 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 | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [434 01-05 02:50:30.63 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 | [470 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [45e 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [4ce 01-05 02:50:31.43 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 | [435 01-05 02:50:30.63 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 | [436 01-05 02:50:30.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org2.example.com | [4cf 01-05 02:50:31.43 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 | [437 01-05 02:50:30.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -peer0.org2.example.com | [471 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [45f 01-05 02:50:30.71 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 | [438 01-05 02:50:30.64 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{0x6e, 0x36, 0x5e, 0xcb, 0x4a, 0x54, 0xb9, 0x4f, 0xf6, 0xc, 0xda, 0xc9, 0x43, 0xd5, 0x11, 0x89, 0xbd, 0x9d, 0x34, 0x76, 0x3d, 0x5b, 0x15, 0x8b, 0xdc, 0xb4, 0xab, 0x31, 0x57, 0x48, 0xae, 0x94} txOffsets= -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [460 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [472 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer1.org2.example.com | [4d0 01-05 02:50:31.43 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 | [461 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer1.org1.example.com | ] -peer0.org2.example.com | [473 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [462 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer1.org2.example.com | [4d1 01-05 02:50:31.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [474 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [463 01-05 02:50:30.71 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 | [439 01-05 02:50:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx ID: [] to index -orderer.example.com | oQmWQsjpiQ== -peer1.org2.example.com | [4d2 01-05 02:50:31.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [475 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer1.org1.example.com | [43a 01-05 02:50:30.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [43b 01-05 02:50:30.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=[26080], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [476 01-05 02:50:31.19 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 | [464 01-05 02:50:30.71 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 | [43c 01-05 02:50:30.65 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 | [4d3 01-05 02:50:31.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [2da 01-05 02:50:23.94 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 | [465 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer0.org2.example.com | [477 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [43d 01-05 02:50:30.65 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 | [4d4 01-05 02:50:31.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [466 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -peer0.org2.example.com | [478 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [43e 01-05 02:50:30.65 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [4d5 01-05 02:50:31.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [479 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [43f 01-05 02:50:30.65 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 | [467 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6e, 0x36, 0x5e, 0xcb, 0x4a, 0x54, 0xb9, 0x4f, 0xf6, 0xc, 0xda, 0xc9, 0x43, 0xd5, 0x11, 0x89, 0xbd, 0x9d, 0x34, 0x76, 0x3d, 0x5b, 0x15, 0x8b, 0xdc, 0xb4, 0xab, 0x31, 0x57, 0x48, 0xae, 0x94} txOffsets= -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [4d6 01-05 02:50:31.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [440 01-05 02:50:30.65 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 | [47a 01-05 02:50:31.19 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 | txId= locPointer=offset=70, bytesLength=12093 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [441 01-05 02:50:30.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 -peer0.org2.example.com | [47b 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [4d7 01-05 02:50:31.43 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 | [47c 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [442 01-05 02:50:30.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)=[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 | [4d8 01-05 02:50:31.44 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | ] -peer0.org2.example.com | [47d 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [468 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx ID: [] to index -peer1.org1.example.com | [443 01-05 02:50:30.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.org2.example.com | [47e 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [4d9 01-05 02:50:31.47 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org1.example.com | [444 01-05 02:50:30.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer0.org2.example.com | [47f 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [469 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [480 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [4da 01-05 02:50:31.48 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer1.org1.example.com | [445 01-05 02:50:30.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 [1] with [1] transactions -peer0.org1.example.com | [46a 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26080], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org2.example.com | [481 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org2.example.com | [4db 01-05 02:50:31.48 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 | [46b 01-05 02:50:30.72 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 | [446 01-05 02:50:30.65 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 | [482 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [4dc 01-05 02:50:31.48 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 | [447 01-05 02:50:30.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 [1] -peer0.org1.example.com | [46c 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -peer0.org2.example.com | [483 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer1.org2.example.com | [4dd 01-05 02:50:31.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [46d 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer0.org2.example.com | [484 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [448 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [46e 01-05 02:50:30.73 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 | [4de 01-05 02:50:31.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42287a040 env 0xc4225a96e0 txn 0 -peer1.org1.example.com | [449 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [485 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [4df 01-05 02:50:31.49 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 | [46f 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [44a 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [4e0 01-05 02:50:31.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [486 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [470 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [44b 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4e1 01-05 02:50:31.50 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [2db 01-05 02:50:23.94 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 | [44c 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [487 01-05 02:50:31.19 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 | [4e2 01-05 02:50:31.50 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 | [471 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -orderer.example.com | [2dc 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [44d 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [4e3 01-05 02:50:31.50 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 | [488 01-05 02:50:31.19 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 | [472 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [44e 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [4e4 01-05 02:50:31.50 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 | [489 01-05 02:50:31.19 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 | [2dd 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [473 01-05 02:50:30.73 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 | [4e5 01-05 02:50:31.50 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 | [48a 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [44f 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [2de 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [474 01-05 02:50:30.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 [1] with [1] transactions -peer1.org2.example.com | [4e6 01-05 02:50:31.50 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 | [450 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [2df 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [48b 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [475 01-05 02:50:30.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 -peer1.org1.example.com | [451 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [2e0 01-05 02:50:23.94 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 | [4e7 01-05 02:50:31.50 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 | [48c 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [476 01-05 02:50:30.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 [1] -peer1.org1.example.com | [452 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [4e8 01-05 02:50:31.50 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 | [477 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [48d 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [453 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [2e1 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [478 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [4e9 01-05 02:50:31.50 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 | [454 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421829880 env 0xc421969110 txn 0 -peer0.org2.example.com | [48e 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [2e2 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [479 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [455 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421969110 -peer1.org2.example.com | [4ea 01-05 02:50:31.50 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 | [48f 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [47a 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [2e3 01-05 02:50:23.94 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 | [456 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -peer0.org2.example.com | [490 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [4eb 01-05 02:50:31.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org1.example.com | [47b 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [2e4 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [457 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [491 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [47c 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [458 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [2e5 01-05 02:50:23.94 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 | [492 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [47d 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [4ec 01-05 02:50:31.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [493 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [4ed 01-05 02:50:31.50 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 | [459 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer0.org1.example.com | [47e 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4ee 01-05 02:50:31.50 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [494 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [45a 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4ef 01-05 02:50:31.50 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 | [47f 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [45b 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4f0 01-05 02:50:31.50 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 | [495 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org1.example.com | [480 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [4f1 01-05 02:50:31.50 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 | [4f2 01-05 02:50:31.50 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 | [496 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [481 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [45c 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422846000, header channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -peer1.org2.example.com | [4f3 01-05 02:50:31.50 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 -peer0.org1.example.com | [482 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [45d 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [4f4 01-05 02:50:31.50 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 | [497 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [45e 01-05 02:50:30.66 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 | [4f5 01-05 02:50:31.50 UTC] [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 | [498 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4f6 01-05 02:50:31.51 UTC] [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 | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [499 01-05 02:50:31.19 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 | [4f7 01-05 02:50:31.51 UTC] [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 | [483 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4203242e0 env 0xc421a34c30 txn 0 -peer1.org1.example.com | [45f 01-05 02:50:30.66 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 | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer1.org2.example.com | [4f8 01-05 02:50:31.51 UTC] [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 | [49a 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [460 01-05 02:50:30.66 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 | [4f9 01-05 02:50:31.51 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 | [484 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a34c30 -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | [4fa 01-05 02:50:31.51 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 | [49b 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [461 01-05 02:50:30.66 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 | [4fb 01-05 02:50:31.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer1.org2.example.com | [4fc 01-05 02:50:31.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [4fd 01-05 02:50:31.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [462 01-05 02:50:30.66 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 | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer0.org2.example.com | [49c 01-05 02:50:31.19 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 | [485 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -peer1.org1.example.com | [463 01-05 02:50:30.66 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 | [4fe 01-05 02:50:31.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org1.example.com | [464 01-05 02:50:30.66 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 | [486 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [4ff 01-05 02:50:31.52 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 | vA2BLfriqQ== -peer0.org2.example.com | [49d 01-05 02:50:31.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [465 01-05 02:50:30.66 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 | [500 01-05 02:50:31.52 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 | [487 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [49e 01-05 02:50:31.19 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 | [501 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [466 01-05 02:50:30.66 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 | [2e6 01-05 02:50:23.94 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 | [488 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org2.example.com | [502 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [467 01-05 02:50:30.66 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 | [49f 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [489 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [503 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [468 01-05 02:50:30.66 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 | [4a0 01-05 02:50:31.20 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [504 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [4a1 01-05 02:50:31.20 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 | [48a 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [469 01-05 02:50:30.66 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 | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [505 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [4a2 01-05 02:50:31.20 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 | [48b 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4224be000, header channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org2.example.com | [506 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [4a3 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [48c 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [46a 01-05 02:50:30.66 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 | [507 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [48d 01-05 02:50:30.74 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.org2.example.com | [4a4 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [508 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [46b 01-05 02:50:30.66 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 | [48e 01-05 02:50:30.74 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 | [4a5 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [48f 01-05 02:50:30.74 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 | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer1.org1.example.com | [46c 01-05 02:50:30.66 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 | [4a6 01-05 02:50:31.20 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 | [509 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [490 01-05 02:50:30.74 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 | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org1.example.com | [46d 01-05 02:50:30.66 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 | [4a7 01-05 02:50:31.20 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 | [491 01-05 02:50:30.74 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 | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer1.org2.example.com | [50a 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [46e 01-05 02:50:30.66 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 | [4a8 01-05 02:50:31.20 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 | [4a9 01-05 02:50:31.20 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 | [492 01-05 02:50:30.74 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 | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer1.org2.example.com | [50b 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [4aa 01-05 02:50:31.20 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 | [46f 01-05 02:50:30.66 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 | [493 01-05 02:50:30.74 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 | [4ab 01-05 02:50:31.20 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 | [50c 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [470 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org2.example.com | [4ac 01-05 02:50:31.20 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 | [494 01-05 02:50:30.74 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 | [471 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [50d 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4ad 01-05 02:50:31.20 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 | [472 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [495 01-05 02:50:30.74 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 | [4ae 01-05 02:50:31.20 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 | [2e7 01-05 02:50:23.94 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 | [50e 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4af 01-05 02:50:31.20 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 | [473 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [496 01-05 02:50:30.74 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 | [2e8 01-05 02:50:23.94 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 | [4b0 01-05 02:50:31.20 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 | [497 01-05 02:50:30.74 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 | [50f 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [474 01-05 02:50:30.66 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 | [4b1 01-05 02:50:31.20 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 | [2e9 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org2.example.com | [4b2 01-05 02:50:31.20 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 | [498 01-05 02:50:30.74 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 | [475 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [510 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2ea 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [4b3 01-05 02:50:31.20 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 | [499 01-05 02:50:30.74 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 | [511 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2eb 01-05 02:50:23.94 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 | [4b4 01-05 02:50:31.20 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 | [49a 01-05 02:50:30.74 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 | [512 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [476 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4b5 01-05 02:50:31.20 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 | [2ec 01-05 02:50:23.94 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 | [49b 01-05 02:50:30.74 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 | [4b6 01-05 02:50:31.20 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 | [513 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [49c 01-05 02:50:30.75 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 | [2ed 01-05 02:50:23.94 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 | [477 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4b7 01-05 02:50:31.20 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 | [4b8 01-05 02:50:31.20 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 | [514 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [49d 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [2ee 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org2.example.com | [4b9 01-05 02:50:31.20 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 | [478 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [515 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [49e 01-05 02:50:30.75 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 | [2ef 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org2.example.com | [4ba 01-05 02:50:31.20 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 | [479 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [4bb 01-05 02:50:31.20 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 | [49f 01-05 02:50:30.75 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 | [4bc 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [516 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2f0 01-05 02:50:23.94 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 | [47a 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [4bd 01-05 02:50:31.20 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 | [4a0 01-05 02:50:30.75 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 | [2f1 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer1.org2.example.com | [517 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [47b 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [4be 01-05 02:50:31.20 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 | [4a1 01-05 02:50:30.75 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 | [518 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4bf 01-05 02:50:31.20 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 | [4a2 01-05 02:50:30.75 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 | [2f2 01-05 02:50:23.94 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 | [4c0 01-05 02:50:31.20 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 | [519 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [47c 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [4a3 01-05 02:50:30.75 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 | [2f3 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org2.example.com | [4c1 01-05 02:50:31.20 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 | [51a 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [47d 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [4a4 01-05 02:50:30.75 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 | [2f4 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer1.org2.example.com | [51b 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4c2 01-05 02:50:31.20 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 | [4a5 01-05 02:50:30.75 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 | [2f5 01-05 02:50:23.94 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 | [47e 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [2f6 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer1.org1.example.com | [47f 01-05 02:50:30.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [4a6 01-05 02:50:30.75 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 | [4c3 01-05 02:50:31.20 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 | [480 01-05 02:50:30.66 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 | [51c 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [2f7 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org2.example.com | [4c4 01-05 02:50:31.20 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 | [4a7 01-05 02:50:30.75 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 | [481 01-05 02:50:30.66 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 | [51d 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [2f8 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org1.example.com | [4a8 01-05 02:50:30.76 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 | [4c5 01-05 02:50:31.20 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 | [482 01-05 02:50:30.67 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 | [2f9 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer1.org2.example.com | [51e 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4c6 01-05 02:50:31.20 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 | [483 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [4a9 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [51f 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2fa 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org2.example.com | [4c7 01-05 02:50:31.20 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 | [484 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [2fb 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org1.example.com | [485 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [520 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4c8 01-05 02:50:31.20 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 | [4aa 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [2fc 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer1.org1.example.com | [486 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [4c9 01-05 02:50:31.20 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 | [4ab 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [521 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [2fd 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [487 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [4ac 01-05 02:50:30.76 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 | [4ca 01-05 02:50:31.20 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 | [2fe 01-05 02:50:23.95 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 | [522 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4ad 01-05 02:50:30.76 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 | [488 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [4cb 01-05 02:50:31.20 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 | [2ff 01-05 02:50:23.95 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 | [4ae 01-05 02:50:30.76 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 | [523 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4cc 01-05 02:50:31.20 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 | [300 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [489 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [4af 01-05 02:50:30.76 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 | [301 01-05 02:50:23.95 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 | [4cd 01-05 02:50:31.20 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 | [524 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [48a 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [302 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [4b0 01-05 02:50:30.76 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 | [525 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4ce 01-05 02:50:31.20 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 | [303 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [48b 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [4b1 01-05 02:50:30.76 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 | [304 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [526 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4cf 01-05 02:50:31.20 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 | [305 01-05 02:50:23.95 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.org2.example.com | [527 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [48c 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [306 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [4b2 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [528 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [307 01-05 02:50:23.95 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.org1.example.com | [48d 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [4d0 01-05 02:50:31.20 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 02:50:23.95 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 | [4b3 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [529 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4d1 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [48e 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [309 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [52a 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4d2 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [48f 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [30a 01-05 02:50:23.95 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 | [4b4 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [4d3 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [52b 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [30b 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [4b5 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [490 01-05 02:50:30.67 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 | [52c 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [30c 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [52d 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [4d4 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [4b6 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [30d 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [491 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [52e 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [30e 01-05 02:50:23.95 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 | [4d5 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [4b7 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [52f 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [492 01-05 02:50:30.67 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 | [30f 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [4d6 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [530 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [310 01-05 02:50:23.95 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 | [493 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [4d7 01-05 02:50:31.20 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 | [531 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [4b8 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [494 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [311 01-05 02:50:23.95 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 | [4d8 01-05 02:50:31.20 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [532 01-05 02:50:31.53 UTC] [github.com/hyperledger/fabric/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 | [495 01-05 02:50:30.67 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 | [4b9 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [312 01-05 02:50:23.95 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 | [533 01-05 02:50:31.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [4d9 01-05 02:50:31.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [4ba 01-05 02:50:30.76 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 | [534 01-05 02:50:31.54 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 | [313 01-05 02:50:23.95 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 | [496 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [4da 01-05 02:50:31.25 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 | [535 01-05 02:50:31.54 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 | [4bb 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [497 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [314 01-05 02:50:23.95 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.org2.example.com | [536 01-05 02:50:31.54 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 | [4bc 01-05 02:50:30.76 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 | [498 01-05 02:50:30.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [4db 01-05 02:50:31.25 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 | [537 01-05 02:50:31.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer0.org1.example.com | [4bd 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [315 01-05 02:50:23.95 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 | [499 01-05 02:50:30.67 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 | [538 01-05 02:50:31.54 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 | [4dc 01-05 02:50:31.25 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 | [4be 01-05 02:50:30.77 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 | [49a 01-05 02:50:30.68 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 | [539 01-05 02:50:31.54 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 | [4dd 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -orderer.example.com | [316 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [53a 01-05 02:50:31.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [49b 01-05 02:50:30.68 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 | [4bf 01-05 02:50:30.77 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 | [317 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [53b 01-05 02:50:31.54 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 | [4de 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421cdaae0 env 0xc422aa32f0 txn 0 -peer0.org1.example.com | [4c0 01-05 02:50:30.77 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 | [49c 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [53c 01-05 02:50:31.54 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] -peer0.org2.example.com | [4df 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [4c1 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [53d 01-05 02:50:31.54 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{0x41, 0x81, 0xd6, 0x8a, 0xc7, 0x9d, 0xc1, 0xe7, 0x3d, 0x11, 0x42, 0x46, 0x49, 0x23, 0x2f, 0x26, 0x59, 0xc7, 0xc0, 0xda, 0x50, 0x2c, 0xb, 0xcc, 0xf4, 0x52, 0xeb, 0x97, 0x30, 0x45, 0x3f, 0xd9} txOffsets= -orderer.example.com | [318 01-05 02:50:23.95 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 | [4c2 01-05 02:50:30.77 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 | txId= locPointer=offset=70, bytesLength=12151 -peer0.org2.example.com | [4e0 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [49d 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [319 01-05 02:50:23.95 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.org2.example.com | ] -peer0.org1.example.com | [4c3 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [31a 01-05 02:50:23.95 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.org2.example.com | [4e1 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [4c4 01-05 02:50:30.77 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 | [49e 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [53e 01-05 02:50:31.54 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 -orderer.example.com | [31b 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [4c5 01-05 02:50:30.77 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 | [4e2 01-05 02:50:31.26 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 | [53f 01-05 02:50:31.54 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 | [31c 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [49f 01-05 02:50:30.68 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 | [4c6 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [540 01-05 02:50:31.54 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 | [31d 01-05 02:50:23.95 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 | [4e3 01-05 02:50:31.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] -peer0.org1.example.com | [4c7 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [541 01-05 02:50:31.54 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 | [31e 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [4c8 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [542 01-05 02:50:31.54 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 | [31f 01-05 02:50:23.95 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 | [4c9 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [4e4 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer1.org1.example.com | [4a0 01-05 02:50:30.68 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 | [543 01-05 02:50:31.54 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 | [320 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [4ca 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [4a1 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [321 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [4cb 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [4a2 01-05 02:50:30.69 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 | [4e5 01-05 02:50:31.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 | [322 01-05 02:50:23.95 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 | [4cc 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [4a3 01-05 02:50:30.69 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 | [544 01-05 02:50:31.54 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 | [323 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [4cd 01-05 02:50:30.77 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 | [4a4 01-05 02:50:30.69 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 | [4e6 01-05 02:50:31.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 | [324 01-05 02:50:23.95 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 | [4ce 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [4a5 01-05 02:50:30.69 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 | [545 01-05 02:50:31.54 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 | [325 01-05 02:50:23.95 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 | [4a6 01-05 02:50:30.69 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 | [326 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org1.example.com | [4a7 01-05 02:50:30.69 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 | [546 01-05 02:50:31.54 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 | [4cf 01-05 02:50:30.77 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 | [327 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer1.org1.example.com | [4a8 01-05 02:50:30.69 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 | [4d0 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [328 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer1.org2.example.com | [547 01-05 02:50:31.54 UTC] [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 | [4e7 01-05 02:50:31.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 | [4d1 01-05 02:50:30.77 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 | [329 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer1.org1.example.com | [4a9 01-05 02:50:30.69 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 | [4d2 01-05 02:50:30.77 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 | [32a 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer1.org1.example.com | [4aa 01-05 02:50:30.69 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 | [4e8 01-05 02:50:31.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 | [4d3 01-05 02:50:30.77 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 | [548 01-05 02:50:31.55 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 | [32b 01-05 02:50:23.95 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 | [4ab 01-05 02:50:30.69 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 | [4d4 01-05 02:50:30.77 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 | [4ac 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [549 01-05 02:50:31.55 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 | [32c 01-05 02:50:23.95 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 | [4e9 01-05 02:50:31.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 -peer0.org1.example.com | [4d5 01-05 02:50:30.77 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-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [32d 01-05 02:50:23.95 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 | [4ae 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [4d6 01-05 02:50:30.77 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 | [32e 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [4d7 01-05 02:50:30.77 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 | [4af 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [32f 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer1.org2.example.com | [54a 01-05 02:50:31.55 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 | [4ea 01-05 02:50:31.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.org2.example.com | [4eb 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [330 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [4d8 01-05 02:50:30.77 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 | [54b 01-05 02:50:31.55 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 | [331 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [4d9 01-05 02:50:30.77 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 | [4b0 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [54c 01-05 02:50:31.55 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 | [54d 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [54e 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [54f 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [4ec 01-05 02:50:31.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -orderer.example.com | [332 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer0.org1.example.com | [4da 01-05 02:50:30.77 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 | [4b1 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [4ed 01-05 02:50:31.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 -peer0.org2.example.com | [4ee 01-05 02:50:31.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 -peer1.org2.example.com | [550 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [551 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [4b2 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [4ef 01-05 02:50:31.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.org2.example.com | [4f0 01-05 02:50:31.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 -peer0.org2.example.com | [4f1 01-05 02:50:31.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.org2.example.com | [4f2 01-05 02:50:31.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 -peer0.org2.example.com | [4f3 01-05 02:50:31.27 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 | [4f4 01-05 02:50:31.27 UTC] [github.com/hyperledger/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 | [4f5 01-05 02:50:31.27 UTC] [github.com/hyperledger/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 | [4f6 01-05 02:50:31.27 UTC] [github.com/hyperledger/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 | [4db 01-05 02:50:30.77 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 | [333 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [334 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [335 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org2.example.com | [4f7 01-05 02:50:31.27 UTC] [github.com/hyperledger/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 | [4dc 01-05 02:50:30.77 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 | [552 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [4b3 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [4f8 01-05 02:50:31.27 UTC] [github.com/hyperledger/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 | [4f9 01-05 02:50:31.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 | [336 01-05 02:50:23.95 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 | [553 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [4b4 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [4dd 01-05 02:50:30.77 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 | [4fa 01-05 02:50:31.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 -orderer.example.com | [337 01-05 02:50:23.95 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 | [554 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [4b5 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [4b6 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [4b7 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [4b8 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [4de 01-05 02:50:30.77 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 | [4fb 01-05 02:50:31.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.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [555 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [4b9 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [338 01-05 02:50:23.95 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 | [4df 01-05 02:50:30.77 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 | [4fc 01-05 02:50:31.28 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 | [556 01-05 02:50:31.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [4ba 01-05 02:50:30.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [339 01-05 02:50:23.95 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 | [4e0 01-05 02:50:30.77 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 | [4fd 01-05 02:50:31.28 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 | [557 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:41124 -orderer.example.com | [33a 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org1.example.com | [4e1 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [4fe 01-05 02:50:31.28 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 | [4bb 01-05 02:50:30.70 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 | [33b 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org2.example.com | [558 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4227ecf30 -peer0.org1.example.com | [4e2 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [4e3 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [4bc 01-05 02:50:30.70 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 | [4ff 01-05 02:50:31.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.ApplicationOrgProtos -peer0.org1.example.com | [4e4 01-05 02:50:30.78 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 | [33c 01-05 02:50:23.95 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 | [4bd 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [4e5 01-05 02:50:30.78 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 | [500 01-05 02:50:31.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 -peer1.org2.example.com | [559 01-05 02:50:32.14 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 | [4be 01-05 02:50:30.70 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 | [33d 01-05 02:50:23.95 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 | [4e6 01-05 02:50:30.78 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 | [501 01-05 02:50:31.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 -peer1.org2.example.com | [55a 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [4bf 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [33e 01-05 02:50:23.95 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 | [4e7 01-05 02:50:30.78 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 | [4c0 01-05 02:50:30.70 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 | [55b 01-05 02:50:32.14 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 | [4e8 01-05 02:50:30.78 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 | [502 01-05 02:50:31.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 -peer1.org1.example.com | [4c1 01-05 02:50:30.70 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 | [4e9 01-05 02:50:30.78 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 | [33f 01-05 02:50:23.95 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)(0xc420945b20)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org2.example.com | [55c 01-05 02:50:32.14 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 | [503 01-05 02:50:31.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 Org2MSP are anchor_peers: -peer0.org1.example.com | [4ea 01-05 02:50:30.78 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 | [4c2 01-05 02:50:30.70 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 | [340 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -peer1.org2.example.com | [55d 01-05 02:50:32.14 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 | [504 01-05 02:50:31.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 Org2MSP -peer0.org1.example.com | [4eb 01-05 02:50:30.78 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 | [341 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x4f, 0x63, 0xe, 0x77, 0x36, 0xb7, 0xf3, 0x1b, 0xd0, 0x22, 0x8d, 0xe5, 0x9e, 0x49, 0x5f, 0x9d, 0x34, 0x7b, 0x44, 0x65, 0x7b, 0xe3, 0xc5, 0xfc, 0x3a, 0x1a, 0x4e, 0x51, 0x55, 0x39, 0xc6, 0xd3} txOffsets= -peer1.org1.example.com | [4c3 01-05 02:50:30.70 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 | [55e 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228bad70, header 0xc4227ecf60 -peer0.org2.example.com | [505 01-05 02:50:31.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.ApplicationOrgProtos -peer0.org1.example.com | [4ec 01-05 02:50:30.78 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 | txId= locPointer=offset=38, bytesLength=12078 -peer0.org2.example.com | [506 01-05 02:50:31.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 -peer0.org1.example.com | [4ed 01-05 02:50:30.78 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 | [4c4 01-05 02:50:30.70 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 | [55f 01-05 02:50:32.14 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 | ] -peer0.org1.example.com | [4ee 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [4c5 01-05 02:50:30.70 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 | [507 01-05 02:50:31.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 -peer1.org2.example.com | [560 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: c60e42ba41179364b32ad0705fa6e8ed88bc522eb810dc76c53d30d4ae44e6db -peer0.org1.example.com | [4ef 01-05 02:50:30.78 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 | [4c6 01-05 02:50:30.70 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 | [342 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org2.example.com | [508 01-05 02:50:31.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 -peer1.org2.example.com | [561 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c60e42ba41179364b32ad0705fa6e8ed88bc522eb810dc76c53d30d4ae44e6db channel id: -peer0.org1.example.com | [4f0 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [343 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -peer1.org1.example.com | [4c7 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [4f1 01-05 02:50:30.78 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 | [562 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [344 01-05 02:50:23.96 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 | [4f2 01-05 02:50:30.78 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 | [509 01-05 02:50:31.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: -peer1.org1.example.com | [4c8 01-05 02:50:30.70 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 | [563 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c60e42ba41179364b32ad0705fa6e8ed88bc522eb810dc76c53d30d4ae44e6db channel id: version: 1.1.0 -peer0.org1.example.com | [4f3 01-05 02:50:30.78 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 | [50a 01-05 02:50:31.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 -orderer.example.com | [345 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes -peer0.org1.example.com | [4f4 01-05 02:50:30.78 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 | [50b 01-05 02:50:31.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 -peer1.org2.example.com | [564 01-05 02:50:32.14 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=c60e42ba41179364b32ad0705fa6e8ed88bc522eb810dc76c53d30d4ae44e6db,syscc=true,proposal=0xc4228bad70,canname=lscc:1.1.0 -orderer.example.com | [346 01-05 02:50:23.96 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]} -peer1.org1.example.com | [4c9 01-05 02:50:30.70 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 | [565 01-05 02:50:32.14 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 | [4f5 01-05 02:50:30.78 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 | [50c 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [347 01-05 02:50:23.96 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 | [4ca 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [566 01-05 02:50:32.14 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 | [50d 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4f6 01-05 02:50:30.78 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 | [348 01-05 02:50:23.96 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) -peer1.org1.example.com | [4cb 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [567 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [50e 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4f7 01-05 02:50:30.78 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 | [349 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -peer1.org2.example.com | [568 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c60e42ba]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [50f 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4cc 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [34a 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -peer1.org1.example.com | [4cd 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [569 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [4f8 01-05 02:50:30.78 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 | [510 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [34b 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [4ce 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [56a 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [511 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4f9 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [34c 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [4cf 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [512 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [56b 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c60e42ba]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [34d 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [56c 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c60e42ba]Move state message TRANSACTION -peer0.org1.example.com | [4fa 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [513 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [34e 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [4d0 01-05 02:50:30.70 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 | [56d 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c60e42ba]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [4fb 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [34f 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F2FE7621685EF59867736A5B21EFCFC9 -peer0.org2.example.com | [514 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [56e 01-05 02:50:32.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4d1 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -orderer.example.com | [350 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 106AF24D235AC510633744F875F99186E18DEF85F2C772139C3C0AE8D8377607 -peer1.org2.example.com | [56f 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c60e42ba]sending state message TRANSACTION -peer0.org1.example.com | [4fc 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [515 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4d2 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [4fd 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [351 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [570 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c60e42ba]Received message TRANSACTION from shim -peer0.org2.example.com | [516 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4fe 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [4d3 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [571 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c60e42ba]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [352 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [4ff 01-05 02:50:30.78 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 | [517 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [572 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c60e42ba]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [4d4 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [353 01-05 02:50:23.96 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 | [518 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [500 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [501 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [519 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [573 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c60e42ba]Transaction completed. Sending COMPLETED -orderer.example.com | [354 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [4d5 01-05 02:50:30.73 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 | [502 01-05 02:50:30.83 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 | [51a 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [4d6 01-05 02:50:30.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 | [574 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c60e42ba]Move state message COMPLETED -orderer.example.com | [355 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [503 01-05 02:50:30.83 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 | [51b 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4d7 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [575 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c60e42ba]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [356 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F2FE7621685EF59867736A5B21EFCFC9 -peer0.org2.example.com | [51c 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4d8 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421829880 env 0xc421969110 txn 0 -peer1.org2.example.com | [576 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c60e42ba]send state message COMPLETED -peer0.org1.example.com | [504 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [357 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E29D69393F8E6FA37012839E2882866134C27FE5AEDA920AFA69456F2E7783B3 -peer0.org2.example.com | [51d 01-05 02:50:31.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [4d9 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [358 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xd8, 0xf4, 0x5a, 0x6a, 0x9c, 0xf5, 0xaa, 0x5d, 0xfb, 0x76, 0xb, 0xe5, 0x2a, 0xb7, 0x41, 0x33, 0xa4, 0x11, 0xd0, 0xc2, 0x7, 0x1e, 0xff, 0xa7, 0xa2, 0x78, 0x95, 0x60, 0xe1, 0xa6, 0xd2, 0x64} txOffsets= -peer1.org2.example.com | [577 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c60e42ba]Received message COMPLETED from shim -peer0.org1.example.com | [505 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [4da 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | txId= locPointer=offset=70, bytesLength=13000 -peer0.org2.example.com | [51e 01-05 02:50:31.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 -peer0.org1.example.com | [506 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4203242e0 env 0xc421a34c30 txn 0 -peer1.org1.example.com | [4db 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | ] -peer1.org2.example.com | [578 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c60e42ba]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [51f 01-05 02:50:31.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 -peer0.org1.example.com | [507 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [4dc 01-05 02:50:30.73 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 | [579 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c60e42ba41179364b32ad0705fa6e8ed88bc522eb810dc76c53d30d4ae44e6db]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [508 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [359 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24015], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [57a 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c60e42ba41179364b32ad0705fa6e8ed88bc522eb810dc76c53d30d4ae44e6db, channelID: -peer1.org1.example.com | [4dd 01-05 02:50:30.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.org1.example.com | [509 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [35a 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -peer0.org2.example.com | [520 01-05 02:50:31.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/Admins -peer1.org2.example.com | [57b 01-05 02:50:32.15 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 | [50a 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer1.org1.example.com | [4de 01-05 02:50:30.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 | [521 01-05 02:50:31.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/Readers -orderer.example.com | [35b 01-05 02:50:24.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer1.org2.example.com | [57c 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [50b 01-05 02:50:30.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] -peer1.org2.example.com | [57d 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [522 01-05 02:50:31.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/Org2MSP -orderer.example.com | [35c 01-05 02:50:24.14 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 -peer1.org1.example.com | [4df 01-05 02:50:30.73 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 | [50c 01-05 02:50:30.83 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 | [523 01-05 02:50:31.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/Org2MSP/MSP -peer1.org2.example.com | [57e 01-05 02:50:32.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:41124) -orderer.example.com | [35d 01-05 02:50:24.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer0.org1.example.com | [50d 01-05 02:50:30.83 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 | [4e0 01-05 02:50:30.73 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 | [57f 01-05 02:50:32.76 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 | [524 01-05 02:50:31.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/Org2MSP/AnchorPeers -orderer.example.com | [35e 01-05 02:50:24.14 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 | [50e 01-05 02:50:30.83 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 | [580 01-05 02:50:32.76 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 -peer1.org1.example.com | [4e1 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [525 01-05 02:50:31.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/Org2MSP/Readers -orderer.example.com | [35f 01-05 02:50:24.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer0.org1.example.com | [50f 01-05 02:50:30.83 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 | [581 01-05 02:50:33.19 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 | [526 01-05 02:50:31.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/Org2MSP/Writers -peer1.org1.example.com | [4e2 01-05 02:50:30.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.org2.example.com | [582 01-05 02:50:33.20 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 | [527 01-05 02:50:31.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/Org2MSP/Admins -orderer.example.com | [360 01-05 02:50:24.15 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 | [510 01-05 02:50:30.83 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 | [4e3 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [528 01-05 02:50:31.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/Capabilities -peer1.org2.example.com | [583 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -orderer.example.com | [361 01-05 02:50:24.15 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 | [511 01-05 02:50:30.83 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 | [4e4 01-05 02:50:30.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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [584 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer0.org2.example.com | [529 01-05 02:50:31.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/Writers -peer0.org1.example.com | [512 01-05 02:50:30.83 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [4e5 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [585 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [52a 01-05 02:50:31.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/Admins -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [513 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [586 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [4e6 01-05 02:50:30.75 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 | [52b 01-05 02:50:31.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/Readers -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org2.example.com | [587 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423225500 env 0xc4231fd770 txn 0 -peer1.org1.example.com | [4e7 01-05 02:50:30.75 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 | [52c 01-05 02:50:31.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: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [4e8 01-05 02:50:30.75 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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [514 01-05 02:50:30.83 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 | [588 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4231fd770 -peer1.org1.example.com | [4e9 01-05 02:50:30.75 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 | [515 01-05 02:50:30.83 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 | [589 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -peer0.org1.example.com | [516 01-05 02:50:30.83 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 | [52d 01-05 02:50:31.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: [Value] /Channel/Consortium -peer0.org1.example.com | [517 01-05 02:50:30.83 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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [4ea 01-05 02:50:30.75 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 | [518 01-05 02:50:30.83 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 | [58a 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [4eb 01-05 02:50:30.75 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 | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org2.example.com | [52e 01-05 02:50:31.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: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [519 01-05 02:50:30.83 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 | [58b 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [4ec 01-05 02:50:30.76 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 | [51a 01-05 02:50:30.83 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 | [52f 01-05 02:50:31.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: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [4ed 01-05 02:50:30.76 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 | [51b 01-05 02:50:30.83 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 | [58c 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org2.example.com | [530 01-05 02:50:31.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: [Value] /Channel/Capabilities -peer1.org1.example.com | [4ee 01-05 02:50:30.76 UTC] [github.com/hyperledger/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 | [51c 01-05 02:50:30.83 UTC] [github.com/hyperledger/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 | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org1.example.com | [4ef 01-05 02:50:30.76 UTC] [github.com/hyperledger/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 | [58d 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [531 01-05 02:50:31.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: [Policy] /Channel/Writers -peer0.org1.example.com | [51d 01-05 02:50:30.83 UTC] [github.com/hyperledger/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 | [4f0 01-05 02:50:30.77 UTC] [github.com/hyperledger/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 | [58e 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org1.example.com | [51e 01-05 02:50:30.83 UTC] [github.com/hyperledger/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 | [532 01-05 02:50:31.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: [Policy] /Channel/Admins -peer1.org1.example.com | [4f1 01-05 02:50:30.77 UTC] [github.com/hyperledger/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 | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org1.example.com | [51f 01-05 02:50:30.83 UTC] [github.com/hyperledger/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 | [58f 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423248000, header channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -peer0.org2.example.com | [533 01-05 02:50:31.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: [Policy] /Channel/Readers -peer1.org1.example.com | [4f2 01-05 02:50:30.77 UTC] [github.com/hyperledger/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 | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [520 01-05 02:50:30.83 UTC] [github.com/hyperledger/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 | [534 01-05 02:50:31.29 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 | [4f3 01-05 02:50:30.77 UTC] [github.com/hyperledger/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 | [590 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [521 01-05 02:50:30.83 UTC] [github.com/hyperledger/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 | [535 01-05 02:50:31.29 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 | [4f4 01-05 02:50:30.77 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 | -----END CERTIFICATE----- -peer0.org1.example.com | [522 01-05 02:50:30.83 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 | [536 01-05 02:50:31.29 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 | [4f5 01-05 02:50:30.77 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 | [523 01-05 02:50:30.83 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 | [362 01-05 02:50:24.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 0xc42000e1a8 gate 1515120624151509200 evaluation starts -peer0.org2.example.com | [537 01-05 02:50:31.29 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 | [4f6 01-05 02:50:30.77 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 | [524 01-05 02:50:30.83 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 | [591 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [538 01-05 02:50:31.29 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 | [4f7 01-05 02:50:30.77 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 | [363 01-05 02:50:24.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 0xc42000e1a8 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [539 01-05 02:50:31.29 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 | [525 01-05 02:50:30.83 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 | [592 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [53a 01-05 02:50:31.29 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 | [4f8 01-05 02:50:30.77 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 | [364 01-05 02:50:24.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 0xc42000e1a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [593 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [526 01-05 02:50:30.83 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 | [53b 01-05 02:50:31.29 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 | [4f9 01-05 02:50:30.77 UTC] [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 | [594 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org2.example.com | [53c 01-05 02:50:31.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 [2] -orderer.example.com | [365 01-05 02:50:24.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 0xc42000e1a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -peer0.org1.example.com | [527 01-05 02:50:30.83 UTC] [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 | [4fa 01-05 02:50:30.77 UTC] [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 | [53d 01-05 02:50:31.30 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{0x41, 0x81, 0xd6, 0x8a, 0xc7, 0x9d, 0xc1, 0xe7, 0x3d, 0x11, 0x42, 0x46, 0x49, 0x23, 0x2f, 0x26, 0x59, 0xc7, 0xc0, 0xda, 0x50, 0x2c, 0xb, 0xcc, 0xf4, 0x52, 0xeb, 0x97, 0x30, 0x45, 0x3f, 0xd9} txOffsets= -orderer.example.com | [366 01-05 02:50:24.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 0xc42000e1a8 principal evaluation fails -peer1.org2.example.com | [595 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +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 -peer0.org1.example.com | [528 01-05 02:50:30.83 UTC] [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 | [4fb 01-05 02:50:30.77 UTC] [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 | [596 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4231fd770 envbytes 0xc42322fb00 +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 | [367 01-05 02:50:24.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 0xc42000e1a8 gate 1515120624151509200 evaluation fails -peer0.org1.example.com | [529 01-05 02:50:30.83 UTC] [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-05 02:50:30.77 UTC] [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 | [53e 01-05 02:50:31.30 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 | [597 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42322fb00 -orderer.example.com | [368 01-05 02:50:24.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/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [53f 01-05 02:50:31.30 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 | [52a 01-05 02:50:30.83 UTC] [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 | [4fd 01-05 02:50:30.77 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 | [598 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [540 01-05 02:50:31.30 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 | [369 01-05 02:50:24.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/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [4fe 01-05 02:50:30.77 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 | [52b 01-05 02:50:30.83 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 | [541 01-05 02:50:31.30 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 | [599 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org1.example.com | [52c 01-05 02:50:30.83 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 | [36a 01-05 02:50:24.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 [ OrdererOrg.Readers ] -peer1.org1.example.com | [4ff 01-05 02:50:30.77 UTC] [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 | [542 01-05 02:50:31.30 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 | [52d 01-05 02:50:30.83 UTC] [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 | [59a 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=bdb603ff-15f3-4b3d-9f78-d50dd10ed0d3,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | [36b 01-05 02:50:24.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/Orderer/Readers -peer0.org2.example.com | [543 01-05 02:50:31.30 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 | [500 01-05 02:50:30.77 UTC] [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 | [52e 01-05 02:50:30.83 UTC] [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 | [59b 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 chaindID businesschannel -orderer.example.com | [36c 01-05 02:50:24.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/Orderer/Readers -peer0.org2.example.com | [544 01-05 02:50:31.31 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 | [52f 01-05 02:50:30.83 UTC] [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-05 02:50:30.78 UTC] [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 | [36d 01-05 02:50:24.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 == -peer1.org2.example.com | [59c 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer0.org2.example.com | [545 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [530 01-05 02:50:30.83 UTC] [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 | [59d 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [502 01-05 02:50:30.78 UTC] [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 | [36e 01-05 02:50:24.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 -peer0.org2.example.com | [546 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [531 01-05 02:50:30.83 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 | [59e 01-05 02:50:41.57 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 | [503 01-05 02:50:30.78 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 | [547 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[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 | [36f 01-05 02:50:24.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 == -peer0.org1.example.com | [532 01-05 02:50:30.83 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 | [504 01-05 02:50:30.78 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 | [59f 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bdb603ff]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [370 01-05 02:50:24.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 0xc42000e1b8 gate 1515120624153633400 evaluation starts -peer0.org1.example.com | [533 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/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 | [548 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | [371 01-05 02:50:24.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 0xc42000e1b8 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [5a0 01-05 02:50:41.57 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 | [534 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [549 01-05 02:50:31.31 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 | [505 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/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 | [5a1 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bdb603ff]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [535 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [54a 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -orderer.example.com | [372 01-05 02:50:24.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 0xc42000e1b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [5a2 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bdb603ff]Move state message TRANSACTION -peer1.org1.example.com | [506 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [54b 01-05 02:50:31.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [536 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [373 01-05 02:50:24.15 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 | [374 01-05 02:50:24.15 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 | [5a3 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bdb603ff]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [507 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [54c 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org1.example.com | [537 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [375 01-05 02:50:24.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 0xc42000e1b8 principal matched by identity 0 -peer1.org2.example.com | [5a4 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [508 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [538 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5a5 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bdb603ff]sending state message TRANSACTION -peer0.org2.example.com | [54d 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [509 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [376 01-05 02:50:24.15 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 f6 47 3e 2d 7c db 5a bc 62 08 6d 3d 53 b2 c9 b8 |.G>-|.Z.b.m=S...| -peer1.org2.example.com | [5a6 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bdb603ff]Received message TRANSACTION from shim -peer0.org2.example.com | [54e 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [539 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5a7 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bdb603ff]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [50a 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 8f 8e 2e bf e6 12 11 1e 89 dc c4 9d e6 2a 44 eb |.............*D.| -peer1.org2.example.com | [5a8 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bdb603ff]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [53a 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [54f 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [50b 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5a9 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [53b 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [550 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [5aa 01-05 02:50:41.57 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 | [377 01-05 02:50:24.15 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 f9 be fb 49 0e 6c 6d 8e 97 66 d5 |0E.!....I.lm..f.| -peer1.org1.example.com | [50c 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5ab 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [551 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [53c 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | 00000010 2b e5 25 30 05 82 d2 a7 2c 02 dd 5c 13 90 f5 0f |+.%0....,..\....| -peer1.org2.example.com | [5ac 01-05 02:50:41.57 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 | [50d 01-05 02:50:30.79 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [53d 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [552 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [5ad 01-05 02:50:41.57 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 | 00000020 e0 7c bc fd a8 02 20 6f 56 f3 14 68 37 fb 01 e0 |.|.... oV..h7...| -peer0.org1.example.com | [53e 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [553 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [5ae 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org1.example.com | [50e 01-05 02:50:30.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | 00000030 27 89 bb 15 42 af ad 35 0b e0 9b 12 fc bb 18 aa |'...B..5........| -peer0.org2.example.com | [554 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [5af 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | 00000040 06 c5 28 ff 70 63 7f |..(.pc.| -peer0.org1.example.com | [53f 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [50f 01-05 02:50:30.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5b0 01-05 02:50:41.57 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 = [4fe2e3a5-b79b-4c15-9ffd-eb4add52aefb] -peer0.org2.example.com | [555 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [5b1 01-05 02:50:41.57 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 | [378 01-05 02:50:24.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 0xc42000e1b8 principal evaluation succeeds for identity 0 -peer1.org1.example.com | [510 01-05 02:50:30.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [540 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [541 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [556 01-05 02:50:31.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [511 01-05 02:50:30.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5b2 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [4fe2e3a5-b79b-4c15-9ffd-eb4add52aefb] -orderer.example.com | [379 01-05 02:50:24.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 0xc42000e1b8 gate 1515120624153633400 evaluation succeeds -peer0.org1.example.com | [542 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [557 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:46768 -peer1.org1.example.com | [512 01-05 02:50:30.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5b3 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -orderer.example.com | [37a 01-05 02:50:24.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 satisfies policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [543 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [558 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422848210 -peer1.org2.example.com | [5b4 01-05 02:50:41.57 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)(0xc422823320)} -peer1.org1.example.com | [513 01-05 02:50:30.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5b5 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [37b 01-05 02:50:24.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 -peer0.org1.example.com | [544 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [514 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [559 01-05 02:50:31.74 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 | [5b6 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bdb603ff]Transaction completed. Sending COMPLETED -orderer.example.com | [37c 01-05 02:50:24.15 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.org2.example.com | [55a 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [545 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [515 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [5b7 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bdb603ff]Move state message COMPLETED -orderer.example.com | [37d 01-05 02:50:24.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 -peer0.org2.example.com | [55b 01-05 02:50:31.74 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 | [516 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [546 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [5b8 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bdb603ff]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [5b9 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bdb603ff]send state message COMPLETED -peer1.org2.example.com | [5ba 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bdb603ff]Received message COMPLETED from shim -peer1.org2.example.com | [5bb 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bdb603ff]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [5bc 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bdb603ff-15f3-4b3d-9f78-d50dd10ed0d3]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [5bd 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bdb603ff-15f3-4b3d-9f78-d50dd10ed0d3, channelID:businesschannel -peer1.org2.example.com | [5be 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5bf 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer1.org2.example.com | [5c0 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42322fb00 -peer1.org2.example.com | [5c1 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4231fd770 envbytes 0xc42322fb00 -orderer.example.com | [37e 01-05 02:50:24.15 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 | [547 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [55c 01-05 02:50:31.74 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 | [517 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [518 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [5c2 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423225500 env 0xc4231fd770 txn 0 -peer0.org1.example.com | [548 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [55d 01-05 02:50:31.74 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 | [55e 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224c9a90, header 0xc422848330 -peer0.org2.example.com | [55f 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [560 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 917cc9e73836a169b51d33ac54703325c96a72973ee580a951fd2c12bc51a1b5 -orderer.example.com | [37f 01-05 02:50:24.15 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 | [519 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [549 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5c3 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [380 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202750c0) start: > stop: > from 172.18.0.7:47156 -peer0.org1.example.com | [54a 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [381 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -peer1.org1.example.com | [51a 01-05 02:50:30.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [561 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 917cc9e73836a169b51d33ac54703325c96a72973ee580a951fd2c12bc51a1b5 channel id: -peer1.org2.example.com | [5c4 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [54b 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [382 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -peer1.org1.example.com | [51b 01-05 02:50:30.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [562 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer1.org2.example.com | [5c5 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -orderer.example.com | [383 01-05 02:50:24.15 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 | [563 01-05 02:50:31.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 917cc9e73836a169b51d33ac54703325c96a72973ee580a951fd2c12bc51a1b5 channel id: version: 1.1.0 -peer1.org1.example.com | [51c 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [5c6 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [54c 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [384 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer1.org1.example.com | [51d 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [5c7 01-05 02:50:41.57 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 | [564 01-05 02:50:31.75 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=917cc9e73836a169b51d33ac54703325c96a72973ee580a951fd2c12bc51a1b5,syscc=true,proposal=0xc4224c9a90,canname=lscc:1.1.0 -orderer.example.com | [385 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] -peer0.org1.example.com | [54d 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5c8 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [565 01-05 02:50:31.75 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 | [386 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202750c0) for 172.18.0.7:47156 -peer0.org1.example.com | [54e 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [51e 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [387 01-05 02:50:24.15 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:47156 for (0xc4202750c0) -peer1.org2.example.com | [5c9 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org1.example.com | [51f 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [566 01-05 02:50:31.75 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 | [54f 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [388 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47156 -peer0.org2.example.com | [567 01-05 02:50:31.75 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 | [5ca 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [550 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [389 01-05 02:50:24.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.7:47156 -peer1.org1.example.com | [520 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5cb 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer0.org2.example.com | [568 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [917cc9e7]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [38a 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47156: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [551 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [521 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [5cc 01-05 02:50:41.57 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 [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] marked as valid by state validator -orderer.example.com | [38b 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org2.example.com | [569 01-05 02:50:31.75 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 | [522 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [552 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [553 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [38c 01-05 02:50:25.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org2.example.com | [56a 01-05 02:50:31.75 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 02:50:41.57 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 | [523 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [38d 01-05 02:50:25.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47166 -peer0.org1.example.com | [554 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/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 | [5ce 01-05 02:50:41.57 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 | [524 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [56b 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [917cc9e7]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [38e 01-05 02:50:25.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:47166 -peer1.org2.example.com | [5cf 01-05 02:50:41.57 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 | [525 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [38f 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [555 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 | [56c 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917cc9e7]Move state message TRANSACTION -peer1.org2.example.com | [5d0 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -orderer.example.com | [390 01-05 02:50:25.56 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:47168 -peer1.org1.example.com | [526 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [556 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 | [56d 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [917cc9e7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5d1 01-05 02:50:41.58 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 | [391 01-05 02:50:25.56 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:47168 -peer1.org1.example.com | [527 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [557 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 | [5d2 01-05 02:50:41.59 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{0xe, 0x90, 0x8f, 0xe0, 0x5d, 0x11, 0xe, 0x2b, 0x26, 0x2, 0x93, 0x17, 0xd8, 0xf4, 0xe7, 0xf8, 0x68, 0xa3, 0x4e, 0xab, 0x6, 0x60, 0xe1, 0x9e, 0xc6, 0x8a, 0x90, 0xc8, 0x16, 0x7f, 0xf0, 0xb9} txOffsets= -peer0.org2.example.com | [56e 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [392 01-05 02:50:25.56 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 | txId=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 locPointer=offset=70, bytesLength=3455 -peer1.org1.example.com | [528 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [558 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 | [559 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 | [56f 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917cc9e7]sending state message TRANSACTION -orderer.example.com | [393 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -peer1.org2.example.com | ] -peer0.org1.example.com | [55a 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [529 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [570 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917cc9e7]Received message TRANSACTION from shim -orderer.example.com | [394 01-05 02:50:25.56 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 | [55b 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 | [5d3 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3455] for tx ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to index -peer1.org1.example.com | [52a 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [571 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [917cc9e7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [55c 01-05 02:50:30.87 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 | [395 01-05 02:50:25.56 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 | [5d4 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3455] for tx number:[0] ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to blockNumTranNum index -peer0.org1.example.com | [55d 01-05 02:50:30.87 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 | [52b 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [55e 01-05 02:50:30.87 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 | [5d5 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45416], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org1.example.com | [52c 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [572 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [917cc9e7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [396 01-05 02:50:25.56 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 | [55f 01-05 02:50:30.87 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 | [52d 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/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 | [5d6 01-05 02:50:41.60 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 | [573 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917cc9e7]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [560 01-05 02:50:30.87 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 | [561 01-05 02:50:30.87 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 | [52e 01-05 02:50:30.84 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 | [574 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917cc9e7]Move state message COMPLETED -peer1.org2.example.com | [5d7 01-05 02:50:41.60 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 | [397 01-05 02:50:25.56 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 | [562 01-05 02:50:30.87 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 | [52f 01-05 02:50:30.84 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 | [5d8 01-05 02:50:41.60 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 | [575 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [917cc9e7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [398 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515120625567810500 evaluation starts -peer0.org1.example.com | [563 01-05 02:50:30.87 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 | [530 01-05 02:50:30.84 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 | [5d9 01-05 02:50:41.60 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 | [576 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917cc9e7]send state message COMPLETED -orderer.example.com | [399 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [564 01-05 02:50:30.88 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 | [531 01-05 02:50:30.84 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 | [5da 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [565 01-05 02:50:30.88 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{0x41, 0x81, 0xd6, 0x8a, 0xc7, 0x9d, 0xc1, 0xe7, 0x3d, 0x11, 0x42, 0x46, 0x49, 0x23, 0x2f, 0x26, 0x59, 0xc7, 0xc0, 0xda, 0x50, 0x2c, 0xb, 0xcc, 0xf4, 0x52, 0xeb, 0x97, 0x30, 0x45, 0x3f, 0xd9} txOffsets= -peer1.org1.example.com | [532 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [39a 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12151 -peer1.org2.example.com | [5db 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [533 01-05 02:50:30.84 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 | [577 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917cc9e7]Received message COMPLETED from shim -peer0.org1.example.com | ] -orderer.example.com | [39b 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -peer1.org1.example.com | [534 01-05 02:50:30.84 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 | [535 01-05 02:50:30.84 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 | [566 01-05 02:50:30.88 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 | [5dc 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -orderer.example.com | [39c 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal evaluation fails -peer0.org2.example.com | [578 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [917cc9e7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [536 01-05 02:50:30.84 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 | [567 01-05 02:50:30.88 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.org2.example.com | [579 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [917cc9e73836a169b51d33ac54703325c96a72973ee580a951fd2c12bc51a1b5]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [537 01-05 02:50:30.85 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{0x41, 0x81, 0xd6, 0x8a, 0xc7, 0x9d, 0xc1, 0xe7, 0x3d, 0x11, 0x42, 0x46, 0x49, 0x23, 0x2f, 0x26, 0x59, 0xc7, 0xc0, 0xda, 0x50, 0x2c, 0xb, 0xcc, 0xf4, 0x52, 0xeb, 0x97, 0x30, 0x45, 0x3f, 0xd9} txOffsets= -peer0.org1.example.com | [568 01-05 02:50:30.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=[40096], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org2.example.com | [5dd 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -orderer.example.com | [39d 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515120625567810500 evaluation fails -peer0.org1.example.com | [569 01-05 02:50:30.89 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 | [57a 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:917cc9e73836a169b51d33ac54703325c96a72973ee580a951fd2c12bc51a1b5, channelID: -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12151 -peer1.org2.example.com | [5de 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -orderer.example.com | [39e 01-05 02:50:25.56 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 | [56a 01-05 02:50:30.89 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 | ] -peer1.org2.example.com | [5df 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [57b 01-05 02:50:31.75 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 | [39f 01-05 02:50:25.56 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 | [538 01-05 02:50:30.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=26150, bytesLength=12151] for tx ID: [] to index -peer0.org1.example.com | [56b 01-05 02:50:30.89 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 | [3a0 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -peer1.org1.example.com | [539 01-05 02:50:30.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=26150, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [5e0 01-05 02:50:41.61 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 | [53a 01-05 02:50:30.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=[40096], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [57c 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [56c 01-05 02:50:30.89 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 | [3a1 01-05 02:50:25.56 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.org1.example.com | [53b 01-05 02:50:30.86 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 | [5e1 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org1.example.com | [56d 01-05 02:50:30.89 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 | [53c 01-05 02:50:30.86 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 | [3a2 01-05 02:50:25.56 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 | [57d 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [53d 01-05 02:50:30.86 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 | [56e 01-05 02:50:30.89 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 | [5e2 01-05 02:50:41.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] -peer0.org2.example.com | [57e 01-05 02:50:31.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:46768) -orderer.example.com | [3a3 01-05 02:50:25.56 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 | [53e 01-05 02:50:30.86 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 | [56f 01-05 02:50:30.89 UTC] [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 | [57f 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -orderer.example.com | [3a4 01-05 02:50:25.57 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 | [5e3 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [53f 01-05 02:50:30.86 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 | [570 01-05 02:50:30.89 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 | [3a5 01-05 02:50:25.57 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 | [581 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -peer1.org1.example.com | [540 01-05 02:50:30.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 -peer1.org2.example.com | [5e4 01-05 02:50:41.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: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 -peer0.org1.example.com | [571 01-05 02:50:30.89 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 | [3a6 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e228 gate 1515120625570552900 evaluation starts -peer0.org2.example.com | [582 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -peer1.org2.example.com | [5e5 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [541 01-05 02:50:30.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)=[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 | [572 01-05 02:50:30.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 [2] with [1] transactions -orderer.example.com | [3a7 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [583 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Unavailable desc = transport is closing ,at 1 attempt. Retrying in 1s -peer1.org2.example.com | [5e6 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [542 01-05 02:50:30.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.org1.example.com | [573 01-05 02:50:30.89 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 | [580 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -peer1.org1.example.com | [543 01-05 02:50:30.86 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 | [3a8 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [5e7 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [585 01-05 02:50:36.01 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 | [544 01-05 02:50:30.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 [2] with [1] transactions -peer0.org1.example.com | [574 01-05 02:50:30.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 [2] -orderer.example.com | [3a9 01-05 02:50:25.57 UTC] [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 -peer0.org2.example.com | [584 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing -peer1.org2.example.com | [5e8 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [575 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [3aa 01-05 02:50:25.57 UTC] [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 -peer1.org1.example.com | [545 01-05 02:50:30.86 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 | [5e9 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [586 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -orderer.example.com | [3ab 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 principal matched by identity 0 -peer0.org1.example.com | [576 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [546 01-05 02:50:30.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 [2] -peer0.org2.example.com | [587 01-05 02:50:36.01 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -peer1.org2.example.com | [5ea 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [3ac 01-05 02:50:25.57 UTC] [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 4b bc fb 21 bd f4 c5 fa 62 3c b8 14 21 57 79 bb |K..!....b<..!Wy.| -peer1.org1.example.com | [547 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [577 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [588 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:46800 -orderer.example.com | 00000010 9b f7 06 c2 9c 54 ac ed 31 90 73 e7 82 6f 76 6e |.....T..1.s..ovn| -peer1.org1.example.com | [548 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [578 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [3ad 01-05 02:50:25.57 UTC] [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 92 d6 7a 2d 28 6c c3 16 f7 fd 79 |0E.!...z-(l....y| -peer1.org2.example.com | [5eb 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [549 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [579 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [589 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423411350 -orderer.example.com | 00000010 bd 5c e6 18 76 7c dd bf b7 44 12 33 62 c5 2a 7e |.\..v|...D.3b.*~| -peer1.org2.example.com | [5ec 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [54a 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [57a 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [58a 01-05 02:50:39.64 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 | [5ed 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | 00000020 19 7f c9 dc b3 02 20 05 92 a4 81 b4 52 6c 2c fd |...... .....Rl,.| -peer0.org1.example.com | [57b 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [5ee 01-05 02:50:48.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:41140 -peer1.org1.example.com | [54b 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [58b 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 00000030 39 2e b1 3d 70 a7 50 38 74 8f 06 65 59 77 8a ea |9..=p.P8t..eYw..| -peer0.org1.example.com | [57c 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [54c 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [5ef 01-05 02:50:48.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4226b0f90 -orderer.example.com | 00000040 f8 0c f2 71 82 df 6c |...q..l| -peer0.org2.example.com | [58c 01-05 02:50:39.64 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 | [54d 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [57d 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [5f0 01-05 02:50:48.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [58d 01-05 02:50:39.64 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 | [3ae 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 principal evaluation succeeds for identity 0 -peer1.org1.example.com | [54e 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [58e 01-05 02:50:39.64 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 | [5f1 01-05 02:50:48.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [57e 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [54f 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [3af 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e228 gate 1515120625570552900 evaluation succeeds -peer0.org2.example.com | [58f 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4233f5180, header 0xc423411380 -peer1.org2.example.com | [5f2 01-05 02:50:48.34 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 | [550 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [3b0 01-05 02:50:25.57 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.org1.example.com | [57f 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54522 -peer0.org2.example.com | [590 01-05 02:50:39.64 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 | [551 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36420 -peer1.org2.example.com | [5f3 01-05 02:50:48.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [580 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4230e0570 -orderer.example.com | [3b1 01-05 02:50:25.57 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.org2.example.com | [591 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc -peer1.org1.example.com | [552 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422c09f50 -orderer.example.com | [3b2 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -peer1.org2.example.com | [5f4 01-05 02:50:48.34 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 | [581 01-05 02:50:32.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 -peer0.org2.example.com | [592 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer1.org2.example.com | [5f5 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4229637c0, header 0xc4226b0fc0 -orderer.example.com | [3b3 01-05 02:50:25.57 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 | [553 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [3b4 01-05 02:50:25.57 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 | [582 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [593 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [554 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [5f6 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -orderer.example.com | [3b5 01-05 02:50:25.57 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 | [583 01-05 02:50:32.41 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 | [594 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer1.org1.example.com | [555 01-05 02:50:31.01 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 | [3b6 01-05 02:50:25.57 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 | [5f7 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54 -peer1.org2.example.com | [5f8 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54] -peer0.org2.example.com | [595 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc channel id: businesschannel -peer0.org2.example.com | [596 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer0.org2.example.com | [597 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [584 01-05 02:50:32.41 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 | [5f9 01-05 02:50:48.35 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 | [556 01-05 02:50:31.01 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 | [3b7 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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.org2.example.com | [598 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc,syscc=true,proposal=0xc4233f5180,canname=lscc:1.1.0 -peer1.org2.example.com | [5fa 01-05 02:50:48.35 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 = [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54] -peer1.org2.example.com | [5fb 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54 channel id: businesschannel -peer1.org2.example.com | [5fc 01-05 02:50:48.35 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=c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54,syscc=true,proposal=0xc4229637c0,canname=lscc:1.1.0 -peer1.org2.example.com | [5fd 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [5fe 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [585 01-05 02:50:32.41 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 | [557 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [3b8 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 | [599 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [5ff 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org1.example.com | [558 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422c907d0, header 0xc422c09f80 -peer0.org1.example.com | [586 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422fbbd60, header 0xc4230e05a0 -peer0.org1.example.com | [587 01-05 02:50:32.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" -orderer.example.com | [3b9 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 | [600 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c94d0795]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [559 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [59a 01-05 02:50:39.64 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 | [588 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 -orderer.example.com | [3ba 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 | [601 01-05 02:50:48.35 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 | [55a 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 579f8b686449a2912570700d95eee2ce8f2f24e76385d2a32fa0f35719929f5c -peer0.org2.example.com | [59b 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [59c 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62c20a8]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [3bb 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [3bc 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [589 01-05 02:50:32.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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org2.example.com | [59d 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [55b 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 579f8b686449a2912570700d95eee2ce8f2f24e76385d2a32fa0f35719929f5c channel id: -peer1.org1.example.com | [55c 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -peer1.org2.example.com | [602 01-05 02:50:48.35 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 | [58a 01-05 02:50:32.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 -peer0.org2.example.com | [59e 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [3bd 01-05 02:50:25.57 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 | [603 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c94d0795]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [55d 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 579f8b686449a2912570700d95eee2ce8f2f24e76385d2a32fa0f35719929f5c channel id: version: 1.1.0 -peer0.org1.example.com | [58b 01-05 02:50:32.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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org2.example.com | [59f 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62c20a8]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [3be 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 | [58c 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel -peer1.org1.example.com | [55e 01-05 02:50:31.01 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=579f8b686449a2912570700d95eee2ce8f2f24e76385d2a32fa0f35719929f5c,syscc=true,proposal=0xc422c907d0,canname=lscc:1.1.0 -peer1.org2.example.com | [604 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Move state message TRANSACTION -peer0.org2.example.com | [5a0 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Move state message TRANSACTION -peer0.org1.example.com | [58d 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -orderer.example.com | [3bf 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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.org2.example.com | [605 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [3c0 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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.org2.example.com | [5a1 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [55f 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [606 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [58e 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel version: 1.1.0 -orderer.example.com | [3c1 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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.org1.example.com | [560 01-05 02:50:31.01 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 | [58f 01-05 02:50:32.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=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993,syscc=true,proposal=0xc422fbbd60,canname=lscc:1.1.0 -orderer.example.com | [3c2 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 | [607 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]sending state message TRANSACTION -peer0.org2.example.com | [5a2 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [590 01-05 02:50:32.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.org2.example.com | [608 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Received message TRANSACTION from shim -peer0.org2.example.com | [5a3 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]sending state message TRANSACTION -peer1.org1.example.com | [561 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -orderer.example.com | [3c3 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [591 01-05 02:50:32.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 | [609 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [5a4 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Received message TRANSACTION from shim -orderer.example.com | [3c4 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 | [562 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [579f8b68]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [592 01-05 02:50:32.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 -peer1.org2.example.com | [60a 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c94d0795]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5a5 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62c20a8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [3c5 01-05 02:50:25.57 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 | [563 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [60b 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c94d0795]Sending GET_STATE -orderer.example.com | [3c6 01-05 02:50:25.57 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 | [593 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5a6 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c62c20a8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [60c 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Received message GET_STATE from shim -peer1.org1.example.com | [564 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [3c7 01-05 02:50:25.57 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.org1.example.com | [594 01-05 02:50:32.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.org2.example.com | [60d 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [5a7 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [c62c20a8]Sending GET_STATE -orderer.example.com | [3c8 01-05 02:50:25.57 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.org1.example.com | [565 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [579f8b68]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5a8 01-05 02:50:39.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Received message GET_STATE from shim -orderer.example.com | [3c9 01-05 02:50:25.57 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 | [595 01-05 02:50:32.41 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 | [5a9 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [566 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [579f8b68]Move state message TRANSACTION -orderer.example.com | [3ca 01-05 02:50:25.57 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 | [596 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [60e 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c94d0795]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [5aa 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c62c20a8]Received GET_STATE, invoking get state from ledger -orderer.example.com | [3cb 01-05 02:50:25.57 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 | [567 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [579f8b68]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [597 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message TRANSACTION -peer1.org2.example.com | [60f 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5ab 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [3cc 01-05 02:50:25.57 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 | [568 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [598 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5ac 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | [3cd 01-05 02:50:25.57 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 | [610 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c94d0795] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [569 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [579f8b68]sending state message TRANSACTION -peer0.org1.example.com | [599 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5ad 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [3ce 01-05 02:50:25.57 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 | [611 01-05 02:50:48.35 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 | [56a 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [579f8b68]Received message TRANSACTION from shim -peer0.org2.example.com | [5ae 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8]No state associated with key: -peer0.org1.example.com | [59a 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message TRANSACTION -orderer.example.com | [3cf 01-05 02:50:25.57 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 | [612 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c94d0795]Got state. Sending RESPONSE -peer1.org1.example.com | [56b 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [579f8b68]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +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 -peer0.org2.example.com | [5af 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c62c20a8]handleGetState serial send RESPONSE -peer0.org1.example.com | [59b 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message TRANSACTION from shim -peer1.org2.example.com | [613 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c94d0795]handleGetState serial send RESPONSE -peer1.org1.example.com | [56c 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [579f8b68]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [3d0 01-05 02:50:25.57 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 | [5b0 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Received message RESPONSE from shim -peer0.org1.example.com | [59c 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [614 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Received message RESPONSE from shim -peer1.org1.example.com | [56d 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [579f8b68]Transaction completed. Sending COMPLETED -orderer.example.com | [3d1 01-05 02:50:25.57 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 [] -peer0.org2.example.com | [5b1 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62c20a8]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [59d 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [49f7d1e6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [615 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [3d2 01-05 02:50:25.57 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 | [5b2 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62c20a8]before send -peer0.org1.example.com | [59e 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [49f7d1e6]Sending GET_STATE -peer1.org1.example.com | [56e 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [579f8b68]Move state message COMPLETED -peer1.org2.example.com | [616 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c94d0795]before send -orderer.example.com | [3d3 01-05 02:50:25.57 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 0xc42000e490 gate 1515120625576303000 evaluation starts -peer0.org2.example.com | [5b3 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62c20a8]after send -peer0.org1.example.com | [59f 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message GET_STATE from shim -peer1.org2.example.com | [617 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c94d0795]after send -peer1.org1.example.com | [56f 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [579f8b68]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [3d4 01-05 02:50:25.57 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 0xc42000e490 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [5b4 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c62c20a8]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [5a0 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [3d5 01-05 02:50:25.57 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 0xc42000e490 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [570 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [579f8b68]send state message COMPLETED -peer1.org2.example.com | [618 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c94d0795]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [5b5 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [c62c20a8]GetState received payload RESPONSE -orderer.example.com | [3d6 01-05 02:50:25.57 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.org1.example.com | [5a1 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [49f7d1e6]Received GET_STATE, invoking get state from ledger -orderer.example.com | [3d7 01-05 02:50:25.57 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 0xc42000e490 principal matched by identity 0 -peer0.org2.example.com | [5b6 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [c62c20a8]Sending PUT_STATE -peer1.org1.example.com | [571 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [579f8b68]Received message COMPLETED from shim -peer0.org1.example.com | [5a2 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [619 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c94d0795]GetState received payload RESPONSE -orderer.example.com | [3d8 01-05 02:50:25.57 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 11 86 ad 3a 42 db 3b 7d e5 0e 5a 3f 91 25 1d b7 |...:B.;}..Z?.%..| -peer0.org2.example.com | [5b7 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Received message PUT_STATE from shim -peer1.org1.example.com | [572 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [579f8b68]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 00000010 e4 da 7e fb b0 79 dc 1a 90 40 35 27 16 d9 13 ae |..~..y...@5'....| -peer0.org1.example.com | [5a3 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [61a 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5b8 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [573 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [579f8b686449a2912570700d95eee2ce8f2f24e76385d2a32fa0f35719929f5c]HandleMessage- COMPLETED. Notify -orderer.example.com | [3d9 01-05 02:50:25.57 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 5e 5c 7b 9d f0 8d 44 22 97 f1 ad 2c |0D. ^\{...D"...,| -peer1.org2.example.com | [61b 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Move state message COMPLETED -peer0.org2.example.com | [5b9 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5a4 01-05 02:50:32.41 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 | [574 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:579f8b686449a2912570700d95eee2ce8f2f24e76385d2a32fa0f35719929f5c, channelID: -orderer.example.com | 00000010 98 4c 0a b0 4f 33 e1 fe 4f eb 78 a8 9e d4 77 89 |.L..O3..O.x...w.| -peer0.org2.example.com | [5ba 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8]state is ready -peer0.org1.example.com | [5a5 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]No state associated with key: -orderer.example.com | 00000020 9e c1 3e d4 02 20 6d 70 aa f1 fd a3 43 4d fd bc |..>.. mp....CM..| -peer0.org2.example.com | [5bb 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [575 01-05 02:50:31.02 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 | exp02. Sending RESPONSE with an empty payload -peer0.org2.example.com | [5bc 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c62c20a8]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [61c 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 00000030 8b de 16 ff 85 14 0d 97 8c 17 8d 0f 3f fd b0 bd |............?...| -peer1.org1.example.com | [576 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5a6 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]handleGetState serial send RESPONSE -peer0.org2.example.com | [5bd 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Move state message RESPONSE -peer1.org2.example.com | [61d 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]send state message COMPLETED -orderer.example.com | 00000040 0a 89 62 d0 f4 9c |..b...| -peer1.org1.example.com | [577 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [5a7 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message RESPONSE from shim -peer1.org2.example.com | [61e 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Received message COMPLETED from shim -orderer.example.com | [3da 01-05 02:50:25.57 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 0xc42000e490 principal evaluation succeeds for identity 0 -peer1.org1.example.com | [578 01-05 02:50:31.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:36420) -peer0.org1.example.com | [5a8 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [5be 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [3db 01-05 02:50:25.57 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 0xc42000e490 gate 1515120625576303000 evaluation succeeds -peer0.org1.example.com | [5a9 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]before send -peer0.org2.example.com | [5bf 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [61f 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [3dc 01-05 02:50:25.57 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 -peer1.org1.example.com | [579 01-05 02:50:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid -peer0.org1.example.com | [5aa 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]after send -peer0.org2.example.com | [5c0 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]sending state message RESPONSE -peer1.org2.example.com | [620 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54]HandleMessage- COMPLETED. Notify -orderer.example.com | [3dd 01-05 02:50:25.57 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.org1.example.com | [5ab 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [49f7d1e6]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [5c1 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Received message RESPONSE from shim -peer1.org1.example.com | [57a 01-05 02:50:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid -peer1.org2.example.com | [621 01-05 02:50:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54, channelID:businesschannel -orderer.example.com | [3de 01-05 02:50:25.57 UTC] [github.com/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 | [3df 01-05 02:50:25.57 UTC] [github.com/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.org2.example.com | [5c2 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62c20a8]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [622 01-05 02:50:48.35 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 | [623 01-05 02:50:48.35 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 | [57b 01-05 02:50:32.74 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 | [5c3 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62c20a8]before send -peer0.org1.example.com | [5ac 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [49f7d1e6]GetState received payload RESPONSE -peer1.org2.example.com | [624 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54 channel id: businesschannel version: 1.0 -orderer.example.com | [3e0 01-05 02:50:25.57 UTC] [github.com/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 | [57c 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [5c4 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c62c20a8]after send -peer0.org1.example.com | [5ad 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [49f7d1e6]Sending PUT_STATE -peer1.org2.example.com | [625 01-05 02:50:48.36 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=c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54,syscc=false,proposal=0xc4229637c0,canname=exp02:1.0 -peer1.org1.example.com | [57d 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [3e1 01-05 02:50:25.57 UTC] [github.com/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 | [5c5 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c62c20a8]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [626 01-05 02:50:48.36 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=c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54,syscc=true,proposal=0xc4229637c0,canname=lscc:1.1.0 -peer1.org1.example.com | [57e 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421c2a460 env 0xc421a614d0 txn 0 -peer0.org1.example.com | [5ae 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message PUT_STATE from shim -peer1.org2.example.com | [627 01-05 02:50:48.36 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 | [5af 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [5c6 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [c62c20a8]Received RESPONSE. Successfully updated state -orderer.example.com | [3e2 01-05 02:50:25.57 UTC] [github.com/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 | [628 01-05 02:50:48.36 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 | [5c7 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -peer0.org1.example.com | [5b0 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [57f 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a614d0 -orderer.example.com | [3e3 01-05 02:50:25.57 UTC] [github.com/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 | [629 01-05 02:50:48.36 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 | [5c8 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Transaction completed. Sending COMPLETED -orderer.example.com | [3e4 01-05 02:50:25.57 UTC] [github.com/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 | [5b1 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]state is ready -peer1.org2.example.com | [62a 01-05 02:50:48.36 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 [c94d0795]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [580 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -peer0.org2.example.com | [5c9 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Move state message COMPLETED -peer1.org2.example.com | [62b 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [5b2 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [3e5 01-05 02:50:25.57 UTC] [github.com/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 | [581 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [62c 01-05 02:50:48.36 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 | [5b3 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [5ca 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62c20a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [3e6 01-05 02:50:25.57 UTC] [github.com/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 | [62d 01-05 02:50:48.36 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 [c94d0795]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [582 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [5cb 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]send state message COMPLETED -orderer.example.com | [3e7 01-05 02:50:25.57 UTC] [github.com/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 | [583 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org2.example.com | [62e 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Move state message TRANSACTION -peer0.org2.example.com | [5cc 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Received message COMPLETED from shim -peer1.org1.example.com | [584 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [5b4 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message RESPONSE -orderer.example.com | [3e8 01-05 02:50:25.57 UTC] [github.com/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 | [62f 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5cd 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [585 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [5b5 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [3e9 01-05 02:50:25.57 UTC] [github.com/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 | [630 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5ce 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [586 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421888a80, header channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -orderer.example.com | [3ea 01-05 02:50:25.57 UTC] [github.com/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 | [631 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]sending state message TRANSACTION -peer0.org2.example.com | [5cf 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, channelID:businesschannel -peer0.org1.example.com | [5b6 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [587 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [3eb 01-05 02:50:25.57 UTC] [github.com/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 | [632 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Received message TRANSACTION from shim -peer0.org1.example.com | [5b7 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message RESPONSE -peer0.org2.example.com | [5d0 01-05 02:50:39.65 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 | [588 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [3ec 01-05 02:50:25.57 UTC] [github.com/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 | [633 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [5d1 01-05 02:50:39.65 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=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc,syscc=false,proposal=0xc4233f5180,canname=exp02:1.0 -peer0.org1.example.com | [5b8 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message RESPONSE from shim -orderer.example.com | [3ed 01-05 02:50:25.57 UTC] [github.com/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 | [634 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c94d0795]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [589 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [5d2 01-05 02:50:39.65 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 | [3ee 01-05 02:50:25.57 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 | [5b9 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [5ba 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]before send -peer1.org2.example.com | [635 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c94d0795]Sending GET_STATE -orderer.example.com | [3ef 01-05 02:50:25.57 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.org1.example.com | [58a 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [5d3 01-05 02:50:39.65 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 -peer0.org1.example.com | [5bb 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]after send -peer1.org2.example.com | [636 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Received message GET_STATE from shim -peer1.org1.example.com | [58b 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -orderer.example.com | [3f0 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [5d4 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer0.org1.example.com | [5bc 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [49f7d1e6]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [637 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [58c 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [5d5 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | [3f1 01-05 02:50:25.58 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 | [5bd 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [49f7d1e6]Received RESPONSE. Successfully updated state -peer1.org2.example.com | [638 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c94d0795]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [5d6 01-05 02:50:39.65 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 | [58d 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421a614d0 envbytes 0xc421cc5600 -orderer.example.com | [3f2 01-05 02:50:25.58 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 | [5be 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -peer1.org2.example.com | [639 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5d7 01-05 02:50:39.65 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 | [3f3 01-05 02:50:25.58 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 | [58e 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421cc5600 -peer0.org1.example.com | [5bf 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5d8 01-05 02:50:39.65 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 | [58f 01-05 02:50:41.60 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 | [3f4 01-05 02:50:25.58 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 | [63a 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c94d0795] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [5c0 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Move state message COMPLETED -peer0.org2.example.com | [5d9 01-05 02:50:39.65 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 | [590 01-05 02:50:41.60 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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer1.org2.example.com | [63b 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [3f5 01-05 02:50:25.58 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 | [5c1 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [591 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=494690eb-b633-46b9-a75c-9bad0296c689,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [5da 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org2.example.com | [63c 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c94d0795]Got state. Sending RESPONSE -orderer.example.com | [3f6 01-05 02:50:25.58 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 | [5c2 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]send state message COMPLETED +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 -peer1.org2.example.com | [63d 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c94d0795]handleGetState serial send RESPONSE -peer0.org1.example.com | [5c3 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message COMPLETED from shim -peer1.org2.example.com | [63e 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Received message RESPONSE from shim -peer1.org1.example.com | [592 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 chaindID businesschannel -orderer.example.com | [3f7 01-05 02:50:25.58 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 | [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.org2.example.com | [63f 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [593 01-05 02:50:41.60 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 | [5c4 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [3f8 01-05 02:50:25.58 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 | [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 -peer1.org1.example.com | [594 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [3f9 01-05 02:50:25.58 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 | [640 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c94d0795]before send -peer0.org1.example.com | [5c5 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993]HandleMessage- COMPLETED. Notify +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 | [3fa 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [595 01-05 02:50:41.60 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 | [641 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c94d0795]after send -peer0.org1.example.com | [5c6 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -orderer.example.com | [3fb 01-05 02:50:25.58 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 | [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 -peer1.org1.example.com | [596 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [494690eb]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [642 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c94d0795]Received RESPONSE, communicated (state:ready) -orderer.example.com | [3fc 01-05 02:50:25.58 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 | [5c7 01-05 02:50:32.42 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 | [643 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c94d0795]GetState received payload RESPONSE +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 -peer1.org1.example.com | [597 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [3fd 01-05 02:50:25.58 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 | [644 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Transaction completed. Sending COMPLETED +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 | [5c8 01-05 02:50:32.42 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=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993,syscc=false,proposal=0xc422fbbd60,canname=exp02:1.0 -peer1.org1.example.com | [598 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [494690eb]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [645 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Move state message COMPLETED -orderer.example.com | [3fe 01-05 02:50:25.58 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 | [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 | [5c9 01-05 02:50:32.42 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 -peer1.org1.example.com | [599 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [494690eb]Move state message TRANSACTION -orderer.example.com | [3ff 01-05 02:50:25.58 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 | [646 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [5ca 01-05 02:50:32.42 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 -peer0.org2.example.com | [5db 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-exp02-1.0) lock -peer1.org1.example.com | [59a 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [494690eb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5cb 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -orderer.example.com | [400 01-05 02:50:25.58 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 | [647 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]send state message COMPLETED -peer0.org2.example.com | [5dc 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-exp02-1.0) lock -peer0.org1.example.com | [5cc 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | [401 01-05 02:50:25.58 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 | [59b 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [648 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Received message COMPLETED from shim -peer0.org1.example.com | [5cd 01-05 02:50:32.42 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 | [402 01-05 02:50:25.58 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.org2.example.com | [5dd 01-05 02:50:39.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 -peer1.org2.example.com | [649 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [59c 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [494690eb]sending state message TRANSACTION -peer1.org2.example.com | [64a 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [5de 01-05 02:50:39.65 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) -orderer.example.com | [403 01-05 02:50:25.58 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 | [59d 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [494690eb]Received message TRANSACTION from shim -peer0.org1.example.com | [5ce 01-05 02:50:32.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.org2.example.com | [5df 01-05 02:50:39.65 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) -peer1.org2.example.com | [64b 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54, channelID:businesschannel -peer1.org1.example.com | [59e 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [494690eb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [404 01-05 02:50:25.58 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 | [5cf 01-05 02:50:32.42 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 | [59f 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [494690eb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5e0 01-05 02:50:39.66 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 | [64c 01-05 02:50:48.36 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.org1.example.com | [5a0 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [5d0 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [5a1 01-05 02:50:41.60 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 | [5e1 01-05 02:50:39.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 -peer1.org2.example.com | [64d 01-05 02:50:48.36 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 -peer1.org1.example.com | [5a2 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [5d1 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer0.org2.example.com | [5e2 01-05 02:50:39.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [64e 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [5a3 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [5e3 01-05 02:50:39.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer1.org2.example.com | [64f 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [5a5 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org2.example.com | [650 01-05 02:50:48.36 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 | [5e4 01-05 02:50:39.67 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 | [5a6 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [5e5 01-05 02:50:39.67 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org2.example.com | [651 01-05 02:50:48.36 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 | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer1.org1.example.com | [5a7 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [7d64c449-bfe5-4fc6-9f27-951551b2f7ff] +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.org1.example.com | [5a8 01-05 02:50:41.60 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 | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | [652 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org2.example.com) -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +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 -peer1.org1.example.com | [5a9 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [7d64c449-bfe5-4fc6-9f27-951551b2f7ff] -peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | [653 01-05 02:50:48.36 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 | [5aa 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +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" \ -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [5ab 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4225f1be0)} -peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [654 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +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 | [5ac 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +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" \ -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer1.org1.example.com | [5ad 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [494690eb]Transaction completed. Sending COMPLETED -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [5ae 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [494690eb]Move state message COMPLETED +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.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [5af 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [494690eb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +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 | [5b0 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [494690eb]send state message COMPLETED -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +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 -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 | [5b1 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [494690eb]Received message COMPLETED from shim -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org2.example.com | [5e6 01-05 02:50:39.68 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 | [5b2 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [494690eb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org1.example.com | [5d2 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock -peer1.org1.example.com | [5b3 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [494690eb-b633-46b9-a75c-9bad0296c689]HandleMessage- COMPLETED. Notify -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org2.example.com | [5e7 01-05 02:50:39.68 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer1.org1.example.com | [5b4 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:494690eb-b633-46b9-a75c-9bad0296c689, channelID:businesschannel -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [5b5 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5d3 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [5e8 01-05 02:50:39.68 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 | [5d4 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 -orderer.example.com | [405 01-05 02:50:25.58 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 | [5d5 01-05 02:50:32.42 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 | [5e9 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | [5b6 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [5d6 01-05 02:50:32.42 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 | 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [5ea 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [5d7 01-05 02:50:32.42 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 | [5b7 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421cc5600 -peer1.org2.example.com | [655 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-exp02-1.0) lock -peer0.org1.example.com | [5d8 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [5d9 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer0.org2.example.com | [5eb 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202dbb40 env 0xc42027b560 txn 0 -peer1.org1.example.com | [5b8 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421a614d0 envbytes 0xc421cc5600 -peer0.org1.example.com | [5da 01-05 02:50:32.43 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 | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [5db 01-05 02:50:32.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 -peer1.org2.example.com | [656 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-exp02-1.0) lock -peer0.org2.example.com | [5ec 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42027b560 -peer1.org1.example.com | [5b9 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421c2a460 env 0xc421a614d0 txn 0 -peer0.org1.example.com | [5dc 01-05 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [5ed 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [5ba 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer0.org2.example.com | [5ee 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [657 01-05 02:50:48.36 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 | ADD binpackage.tar /usr/local/bin -peer1.org1.example.com | [5bb 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org2.example.com | [658 01-05 02:50:48.36 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-exp02-1.0(No such container: dev-peer1.org2.example.com-exp02-1.0) -peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org1.example.com | [5bc 01-05 02:50:41.61 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 | [5ef 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [659 01-05 02:50:48.36 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 | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | [5f0 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org1.example.com | [5bd 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ -peer1.org2.example.com | [65a 01-05 02:50:48.37 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) -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org1.example.com | [5be 01-05 02:50:41.61 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 | [5f1 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" -peer1.org2.example.com | [65b 01-05 02:50:48.37 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-exp02-1.0 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer1.org1.example.com | [5bf 01-05 02:50:41.61 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 | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -peer0.org2.example.com | [5f2 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer0.org1.example.com | [5dd 01-05 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org2.example.com | [65c 01-05 02:50:48.37 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org1.example.com | [5c0 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer0.org2.example.com | [5f3 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42288aa80, header channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [5de 01-05 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer1.org2.example.com | [65d 01-05 02:50:48.37 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 -peer0.org2.example.com | [5f4 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [5df 01-05 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -peer1.org1.example.com | [5c1 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [5e0 01-05 02:50:38.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -peer0.org2.example.com | [5f5 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [406 01-05 02:50:25.58 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 | [65e 01-05 02:50:48.37 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 | [5e1 01-05 02:50:38.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org1.example.com | [5c2 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -orderer.example.com | [407 01-05 02:50:25.58 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 | [5f6 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [65f 01-05 02:50:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | [5e2 01-05 02:50:38.69 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 | [408 01-05 02:50:25.58 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 | [5c3 01-05 02:50:41.61 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 [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] marked as valid by state validator -peer0.org2.example.com | [5f7 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [5e3 01-05 02:50:38.77 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.4.2 -peer1.org1.example.com | [5c4 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [409 01-05 02:50:25.58 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 | [5e4 01-05 02:50:39.38 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 -peer0.org2.example.com | [5f8 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer1.org1.example.com | [5c5 01-05 02:50:41.61 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 | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [5e5 01-05 02:50:39.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) -orderer.example.com | [40a 01-05 02:50:25.58 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 | [5f9 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer0.org1.example.com | [5e6 01-05 02:50:39.45 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 | [5c6 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [5fa 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42027b560 envbytes 0xc421d6d600 -orderer.example.com | [40b 01-05 02:50:25.58 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 | [5e7 01-05 02:50:39.45 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 | [5c7 01-05 02:50:41.61 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 | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org1.example.com | [5e8 01-05 02:50:39.45 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 | [40c 01-05 02:50:25.58 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.org2.example.com | [5fb 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421d6d600 -peer0.org1.example.com | [5e9 01-05 02:50:39.45 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 | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org1.example.com | [5c8 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -orderer.example.com | [40d 01-05 02:50:25.58 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 | [5ea 01-05 02:50:39.45 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 | [5fc 01-05 02:50:41.58 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 | org.hyperledger.fabric.version="1.1.0" \ -peer0.org1.example.com | [5eb 01-05 02:50:39.45 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 | [40e 01-05 02:50:25.58 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 | [5c9 01-05 02:50:41.62 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{0xe, 0x90, 0x8f, 0xe0, 0x5d, 0x11, 0xe, 0x2b, 0x26, 0x2, 0x93, 0x17, 0xd8, 0xf4, 0xe7, 0xf8, 0x68, 0xa3, 0x4e, 0xab, 0x6, 0x60, 0xe1, 0x9e, 0xc6, 0x8a, 0x90, 0xc8, 0x16, 0x7f, 0xf0, 0xb9} txOffsets= -peer0.org2.example.com | [5fd 01-05 02:50:41.58 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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org1.example.com | [5ec 01-05 02:50:39.45 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 | org.hyperledger.fabric.base.version="0.4.2" -orderer.example.com | [40f 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | txId=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 locPointer=offset=70, bytesLength=3455 -peer0.org1.example.com | [5ed 01-05 02:50:39.45 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 | [5fe 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=663f2e0b-3518-48da-9fce-872497a7cd04,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -orderer.example.com | [410 01-05 02:50:25.58 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 | ] -peer0.org1.example.com | [5ee 01-05 02:50:39.45 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 -peer1.org2.example.com | [660 01-05 02:50:48.38 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 | [5ff 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 chaindID businesschannel -orderer.example.com | [411 01-05 02:50:25.58 UTC] [github.com/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 | [5ef 01-05 02:50:39.45 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 | [5ca 01-05 02:50:41.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=40166, bytesLength=3455] for tx ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to index -peer1.org2.example.com | [661 01-05 02:50:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -peer0.org2.example.com | [600 01-05 02:50:41.58 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 | [5f0 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [412 01-05 02:50:25.58 UTC] [github.com/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 | [662 01-05 02:50:48.38 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 | [5f1 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5cb 01-05 02:50:41.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=40166, bytesLength=3455] for tx number:[0] ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to blockNumTranNum index -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [663 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer0.org1.example.com | [5f2 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message READY -peer0.org2.example.com | [601 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [602 01-05 02:50:41.58 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 | [664 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org1.example.com | [5cc 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45416], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [603 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [663f2e0b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [5f3 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [665 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [5cd 01-05 02:50:41.62 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 | [5f4 01-05 02:50:39.45 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 [49f7d1e6]Entered state ready -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org2.example.com | [604 01-05 02:50:41.58 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 | [666 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [5ce 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -peer0.org1.example.com | [5f5 01-05 02:50:39.45 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:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -peer0.org2.example.com | [605 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [663f2e0b]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [667 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42284fb00 env 0xc42345f0b0 txn 0 -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [5cf 01-05 02:50:41.62 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 | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [668 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42345f0b0 -peer0.org2.example.com | [606 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [663f2e0b]Move state message TRANSACTION -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer0.org1.example.com | [5f6 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message READY -peer1.org1.example.com | [5d0 01-05 02:50:41.62 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 | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [669 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU [663f2e0b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5f7 01-05 02:50:39.45 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 | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org2.example.com | [608 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5d1 01-05 02:50:41.62 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 | [5f8 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [66a 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org2.example.com | [609 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [663f2e0b]sending state message TRANSACTION -peer0.org1.example.com | [5f9 01-05 02:50:39.45 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 | [66b 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | oQmWQsjpiQ== -peer1.org2.example.com | [66c 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org1.example.com | [5d2 01-05 02:50:41.62 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [60a 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [663f2e0b]Received message TRANSACTION from shim -peer0.org1.example.com | [5fa 01-05 02:50:39.45 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 | [66d 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [5d3 01-05 02:50:41.62 UTC] [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 | [413 01-05 02:50:25.58 UTC] [github.com/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 | [60b 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [663f2e0b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [5fb 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [66e 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [5d4 01-05 02:50:41.62 UTC] [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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [60c 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [663f2e0b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [5fc 01-05 02:50:39.45 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [5d5 01-05 02:50:41.62 UTC] [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 | [66f 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ce5500, header channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU VSCC invoked -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [5fd 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5d6 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [60e 01-05 02:50:41.59 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [5d7 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer1.org2.example.com | [670 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [5fe 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [671 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [5d8 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [60f 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [5ff 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message INIT -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer1.org2.example.com | [672 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [610 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [600 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [5d9 01-05 02:50:41.63 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 | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org1.example.com | [601 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [673 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org2.example.com | [611 01-05 02:50:41.59 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 | [5da 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org2.example.com | [674 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer0.org1.example.com | [602 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message INIT -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org2.example.com | [612 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org2.example.com | [675 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer1.org1.example.com | [5db 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 -peer0.org1.example.com | [603 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message PUT_STATE from shim -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [676 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc42345f0b0 envbytes 0xc421dae000 -peer0.org2.example.com | [613 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [414 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [5dc 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [604 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [415 01-05 02:50:25.58 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 | [677 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421dae000 -peer1.org1.example.com | [5dd 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [614 01-05 02:50:41.59 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 = [33da477d-1de0-40f2-947d-61209e7dcd4a] -orderer.example.com | [416 01-05 02:50:25.58 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 | [678 01-05 02:50:50.02 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 | [615 01-05 02:50:41.59 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 | [5de 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [417 01-05 02:50:25.58 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 | [605 01-05 02:50:39.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 | [679 01-05 02:50:50.02 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 = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -orderer.example.com | [418 01-05 02:50:25.58 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 | [5df 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [616 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [33da477d-1de0-40f2-947d-61209e7dcd4a] -peer0.org1.example.com | [606 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]state is ready -orderer.example.com | [419 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [5e0 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [617 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -orderer.example.com | [41a 01-05 02:50:25.58 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 | [67a 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=323e6824-31e4-4824-a977-012d9cf9d28d,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [5e1 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [607 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [41b 01-05 02:50:25.58 UTC] [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 | [67b 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc chaindID businesschannel -peer0.org2.example.com | [618 01-05 02:50:41.59 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)(0xc4219c4ea0)} -orderer.example.com | [41c 01-05 02:50:25.58 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 | [608 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [5e2 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [67c 01-05 02:50:50.02 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 | [41d 01-05 02:50:25.58 UTC] [github.com/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 | [619 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [609 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message RESPONSE -peer1.org1.example.com | [5e3 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [41e 01-05 02:50:25.58 UTC] [github.com/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 | [67d 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [5e4 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [60a 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [61a 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [663f2e0b]Transaction completed. Sending COMPLETED -orderer.example.com | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [5e5 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [60b 01-05 02:50:39.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 | [67e 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [61b 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [663f2e0b]Move state message COMPLETED -peer1.org1.example.com | [5e6 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [67f 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [323e6824]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [61c 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [663f2e0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [5e7 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421eb1da0 env 0xc421ec1380 txn 0 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org1.example.com | [60c 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message RESPONSE -peer1.org2.example.com | [680 01-05 02:50:50.02 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 | [5e8 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ec1380 -peer0.org2.example.com | [61d 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [663f2e0b]send state message COMPLETED -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [5e9 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU [49f7d1e6]Received message PUT_STATE from shim -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [681 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [323e6824]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [5ea 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [60e 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [61e 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [663f2e0b]Received message COMPLETED from shim -peer1.org2.example.com | [682 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [323e6824]Move state message TRANSACTION -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer1.org1.example.com | [5eb 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [60f 01-05 02:50:39.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 -peer0.org2.example.com | [61f 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [663f2e0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [5ec 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org2.example.com | [683 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [323e6824]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [610 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]state is ready -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer1.org1.example.com | [5ed 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [684 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer0.org2.example.com | [620 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [663f2e0b-3518-48da-9fce-872497a7cd04]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5ee 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [611 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer1.org1.example.com | [5ef 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42182b500, header channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU [323e6824]sending state message TRANSACTION -peer0.org1.example.com | [612 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [621 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:663f2e0b-3518-48da-9fce-872497a7cd04, channelID:businesschannel -orderer.example.com | vA2BLfriqQ== -peer1.org1.example.com | [5f0 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [686 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [323e6824]Received message TRANSACTION from shim -peer0.org2.example.com | [622 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [5f1 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [613 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message RESPONSE -peer1.org1.example.com | [5f2 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [623 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -orderer.example.com | [41f 01-05 02:50:25.58 UTC] [github.com/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 | [687 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [323e6824]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5f3 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [614 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [624 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421d6d600 -peer1.org1.example.com | [5f4 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer1.org2.example.com | [688 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [323e6824]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [625 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42027b560 envbytes 0xc421d6d600 -peer1.org1.example.com | [5f5 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [615 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [626 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202dbb40 env 0xc42027b560 txn 0 -peer1.org2.example.com | [689 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org1.example.com | [5f6 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421ec1380 envbytes 0xc422e2e000 -peer0.org1.example.com | [616 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message RESPONSE -peer0.org2.example.com | [627 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [68a 01-05 02:50:50.02 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 | [628 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [5f7 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e2e000 -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [617 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message COMPLETED from shim -peer0.org2.example.com | [629 01-05 02:50:41.59 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 | [68b 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer1.org1.example.com | [5f8 01-05 02:50:50.04 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 | [618 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [62a 01-05 02:50:41.59 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 | [68c 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [62b 01-05 02:50:41.59 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 | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org1.example.com | [619 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [62c 01-05 02:50:41.59 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 | [68d 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [5f9 01-05 02:50:50.04 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 = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [61a 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -peer0.org2.example.com | [62d 01-05 02:50:41.59 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 | [68e 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org1.example.com | [5fa 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=b95359bb-ba7a-4c10-8803-0526308a1a8e,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [61b 01-05 02:50:39.47 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 | [62e 01-05 02:50:41.59 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 | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer1.org2.example.com | [68f 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [62f 01-05 02:50:41.59 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 | [5fb 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc chaindID businesschannel -peer0.org1.example.com | [61c 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [630 01-05 02:50:41.59 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 [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] marked as valid by state validator -peer1.org2.example.com | [690 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [e795c9c9-8d81-4996-9cbc-edef9d13ab43] -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org2.example.com | [631 01-05 02:50:41.59 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 | [61d 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [5fc 01-05 02:50:50.04 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 | [632 01-05 02:50:41.59 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 | [691 01-05 02:50:50.03 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 | [61e 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org2.example.com | [633 01-05 02:50:41.59 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 | [692 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [e795c9c9-8d81-4996-9cbc-edef9d13ab43] -peer1.org1.example.com | [5fd 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [5fe 01-05 02:50:50.04 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 | [5ff 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b95359bb]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [600 01-05 02:50:50.04 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 | [693 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [694 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc422823320)} -peer1.org2.example.com | [695 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org2.example.com | [696 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [323e6824]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [697 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [323e6824]Move state message COMPLETED -peer1.org2.example.com | [698 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [323e6824]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [420 01-05 02:50:25.58 UTC] [github.com/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 | [61f 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [634 01-05 02:50:41.59 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 | [699 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [323e6824]send state message COMPLETED -peer1.org1.example.com | [601 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b95359bb]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [602 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95359bb]Move state message TRANSACTION -peer0.org1.example.com | [620 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel chaincode id: name:"lscc" -peer1.org2.example.com | [69a 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [323e6824]Received message COMPLETED from shim -orderer.example.com | [421 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [422 01-05 02:50:25.58 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 | [603 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b95359bb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [69b 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [323e6824]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [635 01-05 02:50:41.59 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 | [423 01-05 02:50:25.58 UTC] [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 | [604 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [621 01-05 02:50:39.47 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 | [69c 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [323e6824-31e4-4824-a977-012d9cf9d28d]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [636 01-05 02:50:41.59 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{0xe, 0x90, 0x8f, 0xe0, 0x5d, 0x11, 0xe, 0x2b, 0x26, 0x2, 0x93, 0x17, 0xd8, 0xf4, 0xe7, 0xf8, 0x68, 0xa3, 0x4e, 0xab, 0x6, 0x60, 0xe1, 0x9e, 0xc6, 0x8a, 0x90, 0xc8, 0x16, 0x7f, 0xf0, 0xb9} txOffsets= -peer1.org2.example.com | [69d 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:323e6824-31e4-4824-a977-012d9cf9d28d, channelID:businesschannel -orderer.example.com | [424 01-05 02:50:25.58 UTC] [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 | [605 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95359bb]sending state message TRANSACTION -peer0.org2.example.com | txId=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 locPointer=offset=70, bytesLength=3455 -peer0.org1.example.com | [622 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel version: 1.1.0 -orderer.example.com | [425 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer1.org2.example.com | [69e 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +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 +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 +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) +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 +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 +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 +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.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 +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 | 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 +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 +peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org2.example.com | org.hyperledger.fabric.version="1.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 +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 +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.org2.example.com | [637 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3455] for tx ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to index -peer0.org2.example.com | [638 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40166, bytesLength=3455] for tx number:[0] ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to blockNumTranNum index -peer0.org2.example.com | [639 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45416], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org2.example.com | [63a 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -peer1.org1.example.com | [606 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95359bb]Received message TRANSACTION from shim -orderer.example.com | [426 01-05 02:50:25.58 UTC] [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 | [69f 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, error Chaincode exp02 is already instantiated -peer0.org1.example.com | [623 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993,syscc=true,proposal=0xc422fbbd60,canname=escc:1.1.0 -peer0.org2.example.com | [63b 01-05 02:50:41.60 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 | [607 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b95359bb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6a0 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer0.org1.example.com | [624 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [427 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org1.example.com | [608 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b95359bb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [63c 01-05 02:50:41.60 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 | [625 01-05 02:50:39.47 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 | [6a1 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421dae000 -orderer.example.com | [428 01-05 02:50:25.58 UTC] [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 | [609 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [63d 01-05 02:50:41.61 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 | [6a2 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc42345f0b0 envbytes 0xc421dae000 -peer0.org1.example.com | [626 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [60a 01-05 02:50:50.05 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 | [63e 01-05 02:50:41.61 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 | [429 01-05 02:50:25.58 UTC] [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 | [6a3 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc returned error Chaincode exp02 is already instantiated -peer1.org1.example.com | [60b 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [63f 01-05 02:50:47.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 -peer0.org1.example.com | [627 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [42a 01-05 02:50:25.58 UTC] [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.org2.example.com | [6a4 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42284fb00 env 0xc42345f0b0 txn 0 -peer1.org1.example.com | [60c 01-05 02:50:50.05 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 | [640 01-05 02:50:47.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org1.example.com | [628 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [6a5 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -orderer.example.com | [42b 01-05 02:50:25.58 UTC] [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 | [60d 01-05 02:50:50.05 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 | [641 01-05 02:50:47.18 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 | [6a6 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [6a7 01-05 02:50:50.04 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 | [6a8 01-05 02:50:50.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 | [6a9 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer1.org2.example.com | [6aa 01-05 02:50:50.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 | [6ab 01-05 02:50:50.04 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 [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -orderer.example.com | [42c 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org1.example.com | [60e 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org2.example.com | [642 01-05 02:50:47.28 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 | [6ac 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [42d 01-05 02:50:25.58 UTC] [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 | [60f 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [643 01-05 02:50:47.90 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 | [6ad 01-05 02:50:50.04 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 | [6ae 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [42e 01-05 02:50:25.58 UTC] [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 | [610 01-05 02:50:50.05 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 = [6650e64e-24eb-40be-b3ed-5d657c1390da] -peer0.org1.example.com | [629 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [644 01-05 02:50:47.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-exp02-1.0) -peer1.org2.example.com | [6af 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -orderer.example.com | [42f 01-05 02:50:25.58 UTC] [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 | [611 01-05 02:50:50.05 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 | [612 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [6650e64e-24eb-40be-b3ed-5d657c1390da] -peer0.org2.example.com | [645 01-05 02:50:47.96 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 | [430 01-05 02:50:25.58 UTC] [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 | [62a 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [62b 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message TRANSACTION -peer0.org2.example.com | [646 01-05 02:50:47.96 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 | [6b0 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] -orderer.example.com | [431 01-05 02:50:25.58 UTC] [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 | [432 01-05 02:50:25.58 UTC] [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 | [613 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org2.example.com | [647 01-05 02:50:47.96 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 | [6b1 01-05 02:50:50.06 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{0x4, 0x54, 0x21, 0x67, 0xdf, 0x21, 0x1b, 0x2e, 0xa, 0xd7, 0xd0, 0x9, 0xa7, 0xc, 0xf3, 0x44, 0x38, 0x6f, 0x1f, 0x90, 0x3, 0x52, 0xcd, 0xef, 0x5, 0x8a, 0x93, 0xb8, 0xa, 0xcf, 0x60, 0x61} txOffsets= -peer1.org2.example.com | txId=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc locPointer=offset=70, bytesLength=3460 -peer1.org2.example.com | ] -peer1.org2.example.com | [6b2 01-05 02:50:50.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=45486, bytesLength=3460] for tx ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to index -peer0.org2.example.com | [648 01-05 02:50:47.96 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 | [649 01-05 02:50:47.96 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 | [64a 01-05 02:50:47.96 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 | [433 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [6b3 01-05 02:50:50.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=45486, bytesLength=3460] for tx number:[0] ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to blockNumTranNum index -peer1.org1.example.com | [614 01-05 02:50:50.05 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)(0xc4225f1be0)} -peer1.org1.example.com | [615 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer0.org2.example.com | [64b 01-05 02:50:47.96 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 -orderer.example.com | [434 01-05 02:50:25.58 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 | [435 01-05 02:50:25.58 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 | [6b4 01-05 02:50:50.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=[50742], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [62c 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [436 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [64c 01-05 02:50:47.96 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 | [616 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95359bb]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [6b5 01-05 02:50:50.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 | [62d 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [617 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95359bb]Move state message COMPLETED -peer0.org2.example.com | [64d 01-05 02:50:47.96 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 -peer1.org2.example.com | [6b6 01-05 02:50:50.07 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 | [437 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [438 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [618 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b95359bb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [619 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95359bb]send state message COMPLETED -peer1.org1.example.com | [61a 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95359bb]Received message COMPLETED from shim -peer1.org1.example.com | [61b 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b95359bb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [61c 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b95359bb-ba7a-4c10-8803-0526308a1a8e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [64e 01-05 02:50:47.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [6b7 01-05 02:50:50.07 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 | [439 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [43a 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [6b8 01-05 02:50:50.07 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 | [62e 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message TRANSACTION -peer1.org1.example.com | [61d 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b95359bb-ba7a-4c10-8803-0526308a1a8e, channelID:businesschannel -peer0.org2.example.com | [64f 01-05 02:50:47.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [43b 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [6b9 01-05 02:50:50.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [650 01-05 02:50:47.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [61e 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [62f 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message TRANSACTION from shim -peer0.org2.example.com | [651 01-05 02:50:47.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Move state message READY -peer1.org2.example.com | [6ba 01-05 02:50:55.14 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 | [61f 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, error Chaincode exp02 is already instantiated -orderer.example.com | [43c 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [652 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [630 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6bb 01-05 02:50:55.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org1.example.com | [620 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer0.org2.example.com | [653 01-05 02:50:47.97 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 [c62c20a8]Entered state ready -orderer.example.com | [43d 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [43e 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [43f 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [440 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [441 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [442 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [443 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [444 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [445 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [446 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/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 | [447 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/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 | [448 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [449 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [44a 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [44b 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [44c 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [44d 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/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 | [621 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e2e000 -peer1.org1.example.com | [622 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421ec1380 envbytes 0xc422e2e000 -peer1.org1.example.com | [623 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc returned error Chaincode exp02 is already instantiated -peer1.org1.example.com | [624 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421eb1da0 env 0xc421ec1380 txn 0 -peer1.org1.example.com | [625 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer1.org1.example.com | [626 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [627 01-05 02:50:50.06 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 | [628 01-05 02:50:50.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 | [629 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer1.org1.example.com | [62a 01-05 02:50:50.07 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 | [62b 01-05 02:50:50.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 [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org1.example.com | [62c 01-05 02:50:50.07 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 | [62d 01-05 02:50:50.07 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 | [62e 01-05 02:50:50.07 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 | [62f 01-05 02:50:50.07 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 | [630 01-05 02:50:50.08 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 | [631 01-05 02:50:50.08 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{0x4, 0x54, 0x21, 0x67, 0xdf, 0x21, 0x1b, 0x2e, 0xa, 0xd7, 0xd0, 0x9, 0xa7, 0xc, 0xf3, 0x44, 0x38, 0x6f, 0x1f, 0x90, 0x3, 0x52, 0xcd, 0xef, 0x5, 0x8a, 0x93, 0xb8, 0xa, 0xcf, 0x60, 0x61} txOffsets= -peer1.org1.example.com | txId=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc locPointer=offset=70, bytesLength=3460 -peer1.org1.example.com | ] -peer1.org1.example.com | [632 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3460] for tx ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to index -peer1.org1.example.com | [633 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3460] for tx number:[0] ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to blockNumTranNum index -peer1.org1.example.com | [634 01-05 02:50:50.09 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 | [635 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -peer1.org1.example.com | [636 01-05 02:50:50.09 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 | [637 01-05 02:50:50.09 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 | [638 01-05 02:50:50.09 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 | [639 01-05 02:50:50.09 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 | [63a 01-05 02:50:50.09 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 | [63b 01-05 02:50:50.10 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 | [63c 01-05 02:50:50.10 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 | [6bc 01-05 02:50:55.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 -peer0.org2.example.com | [654 01-05 02:50:47.97 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:c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, channelID:businesschannel -peer0.org1.example.com | [631 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [49f7d1e6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [63d 01-05 02:50:50.10 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 | [44e 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [6bd 01-05 02:50:55.22 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d -peer0.org2.example.com | [655 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]sending state message READY -peer0.org2.example.com | [656 01-05 02:50:47.97 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 | [632 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [44f 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [63e 01-05 02:50:50.10 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 | [657 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [6be 01-05 02:50:55.87 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-exp02-1.0 -orderer.example.com | [450 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [63f 01-05 02:50:50.11 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 | [633 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [634 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [635 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Move state message COMPLETED -peer0.org1.example.com | [636 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [658 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [640 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [451 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [6bf 01-05 02:50:55.87 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-exp02-1.0) -peer1.org2.example.com | [6c0 01-05 02:50:55.91 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 | [6c1 01-05 02:50:55.91 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 | [6c2 01-05 02:50:55.91 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 | [6c3 01-05 02:50:55.91 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 | [6c4 01-05 02:50:55.91 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 | [659 01-05 02:50:47.97 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 | [452 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [641 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc -peer0.org1.example.com | [637 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]send state message COMPLETED -peer1.org2.example.com | [6c5 01-05 02:50:55.91 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 | [453 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [6c6 01-05 02:50:55.91 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 | [642 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [65a 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [c62c20a8]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [638 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message COMPLETED from shim -peer1.org2.example.com | [6c7 01-05 02:50:55.91 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 | [6c8 01-05 02:50:55.91 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 -peer1.org2.example.com | [6c9 01-05 02:50:55.91 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.org2.example.com | [6ca 01-05 02:50:55.91 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.org2.example.com | [6cb 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [6cc 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Move state message READY -peer1.org2.example.com | [6cd 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [6ce 01-05 02:50:55.91 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 [c94d0795]Entered state ready -peer1.org2.example.com | [6cf 01-05 02:50:55.91 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:c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54, channelID:businesschannel -peer1.org2.example.com | [6d0 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]sending state message READY -peer1.org2.example.com | [6d1 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [6d2 01-05 02:50:55.91 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 | [6d3 01-05 02:50:55.91 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 | [6d4 01-05 02:50:55.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 -peer1.org2.example.com | [6d5 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c94d0795]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [6d6 01-05 02:50:55.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... -peer1.org2.example.com | [6d7 01-05 02:50:55.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... -peer1.org2.example.com | [6d8 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c94d0795]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [6d9 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Move state message TRANSACTION -peer1.org2.example.com | [6da 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [6db 01-05 02:50:55.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 -peer1.org2.example.com | [6dc 01-05 02:50:55.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]sending state message TRANSACTION -peer1.org2.example.com | [6dd 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Received message GET_STATE from shim -peer1.org1.example.com | [643 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [454 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [65b 01-05 02:50:47.97 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.org2.example.com | [6de 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [639 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [455 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [644 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [6df 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c94d0795]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [63a 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [65c 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [456 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 | [645 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [63b 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -peer0.org2.example.com | [65d 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [c62c20a8]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [65e 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Move state message INIT -peer1.org2.example.com | [6e0 01-05 02:50:55.92 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 | [646 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [63c 01-05 02:50:39.47 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 | [63d 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [63e 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [63f 01-05 02:50:39.47 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 [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org1.example.com | [640 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54522) -peer0.org1.example.com | [641 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -orderer.example.com | [457 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 | [458 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 | [6e1 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c94d0795] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [6e2 01-05 02:50:55.92 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-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c94d0795]Got state. Sending RESPONSE -peer1.org2.example.com | [6e4 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c94d0795]handleGetState serial send RESPONSE -peer1.org2.example.com | [6e5 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Received message COMPLETED from shim -peer1.org1.example.com | [647 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [648 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [649 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [64a 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [64b 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:36490 -peer1.org1.example.com | [64c 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422e4d9e0 -peer1.org1.example.com | [64d 01-05 02:50:56.26 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 | [65f 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [6e6 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [642 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer0.org2.example.com | [660 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [661 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]sending state message INIT -peer0.org2.example.com | [662 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Received message PUT_STATE from shim -peer0.org2.example.com | [663 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [664 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [665 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8]state is ready -peer0.org2.example.com | [666 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [667 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c62c20a8]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [668 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Move state message RESPONSE -peer0.org2.example.com | [669 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [6e7 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6e8 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54, channelID:businesschannel -peer1.org2.example.com | [6e9 01-05 02:50:55.92 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 | [459 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 | [643 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [64e 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [6ea 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [45a 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 | [66a 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [64f 01-05 02:50:56.26 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 | [644 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [6eb 01-05 02:50:55.92 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 | [45b 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 | [45c 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 | [650 01-05 02:50:56.26 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 | [66b 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]sending state message RESPONSE -peer1.org2.example.com | [6ec 01-05 02:50:55.92 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 [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54] -peer0.org1.example.com | [645 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4226c22e0 env 0xc422a4d650 txn 0 -orderer.example.com | [45d 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 | [651 01-05 02:50:56.26 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 | [66c 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Received message PUT_STATE from shim -peer1.org2.example.com | [6ed 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [646 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422a4d650 -orderer.example.com | [45e 01-05 02:50:25.60 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.org2.example.com | [66d 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [6ee 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54 channel id: businesschannel chaincode id: name:"exp02" -peer1.org1.example.com | [652 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4230dbc70, header 0xc422e4da10 -peer0.org2.example.com | [66e 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6ef 01-05 02:50:55.92 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 -orderer.example.com | [45f 01-05 02:50:25.60 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 | [460 01-05 02:50:25.60 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 | [653 01-05 02:50:56.26 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 | [66f 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8]state is ready -peer1.org2.example.com | [6f0 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54 channel id: businesschannel version: 1.1.0 -orderer.example.com | [461 01-05 02:50:25.60 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 | [654 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a -peer0.org2.example.com | [670 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c62c20a8]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [671 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c62c20a8]enterBusyState trigger event RESPONSE -orderer.example.com | [462 01-05 02:50:25.60 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 | [672 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Move state message RESPONSE -peer1.org2.example.com | [6f1 01-05 02:50:55.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=c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54,syscc=true,proposal=0xc4229637c0,canname=escc:1.1.0 -peer0.org1.example.com | [647 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -peer1.org1.example.com | [655 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a] -orderer.example.com | [463 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [673 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [674 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [675 01-05 02:50:47.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]sending state message RESPONSE -peer0.org2.example.com | [676 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Received message COMPLETED from shim -peer0.org2.example.com | [677 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [678 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6f2 01-05 02:50:55.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 -peer1.org1.example.com | [656 01-05 02:50:56.26 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 | [648 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [679 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, channelID:businesschannel -orderer.example.com | [464 01-05 02:50:25.60 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 | [6f3 01-05 02:50:55.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 | [649 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [465 01-05 02:50:25.60 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 | [67a 01-05 02:50:47.98 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 | [64a 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org2.example.com | [6f4 01-05 02:50:55.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 -peer1.org1.example.com | [657 01-05 02:50:56.26 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 = [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a] -orderer.example.com | [466 01-05 02:50:25.60 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 | [67b 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [67c 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [67d 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer0.org2.example.com | [67e 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [67f 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc channel id: businesschannel chaincode id: name:"lscc" -peer0.org2.example.com | [681 01-05 02:50:47.98 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 | [6f6 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c94d0795]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [467 01-05 02:50:25.60 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 | [682 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [658 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a channel id: businesschannel -peer1.org2.example.com | [6f7 01-05 02:50:55.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... -peer0.org1.example.com | [64b 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [468 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [64c 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [683 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc,syscc=true,proposal=0xc4233f5180,canname=escc:1.1.0 -orderer.example.com | [469 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer1.org1.example.com | [659 01-05 02:50:56.26 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=030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a,syscc=true,proposal=0xc4230dbc70,canname=lscc:1.1.0 -peer0.org1.example.com | [64d 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c55500, header channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -orderer.example.com | [46a 01-05 02:50:25.60 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 | [684 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org1.example.com | [65a 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer1.org2.example.com | [6f8 01-05 02:50:55.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 | [64e 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [46b 01-05 02:50:25.60 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 | [685 01-05 02:50:47.98 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 | [65b 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [64f 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [650 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [46c 01-05 02:50:25.60 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 | [686 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [6f9 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c94d0795]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [65c 01-05 02:50:56.26 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 | [651 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [652 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org2.example.com | [687 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62c20a8]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [46d 01-05 02:50:25.60 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 | [46e 01-05 02:50:25.60 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 | [46f 01-05 02:50:25.60 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 | [470 01-05 02:50:25.60 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 | [471 01-05 02:50:25.60 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 | [680 01-05 02:50:47.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 | [689 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org2.example.com | [6fa 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Move state message TRANSACTION -peer1.org2.example.com | [6fb 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [6fc 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6fd 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]sending state message TRANSACTION -peer0.org2.example.com | [688 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [472 01-05 02:50:25.60 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 | [65d 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [030731ee]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [653 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [6fe 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Received message TRANSACTION from shim -peer0.org2.example.com | [68b 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [473 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608F1CFBBD20522...38748F066559778AEAF80CF27182DF6C -peer1.org1.example.com | [65e 01-05 02:50:56.26 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 | [654 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422a4d650 envbytes 0xc42258e380 -peer0.org2.example.com | [68c 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c62c20a8]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [474 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: E23E3CF27419FE1DFE40F3891854457E3CBD31754CBAF58A361D4D327FBF6B0E -peer1.org2.example.com | [6ff 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [65f 01-05 02:50:56.26 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 | [655 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42258e380 -peer0.org2.example.com | [68a 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [700 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c94d0795]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [475 01-05 02:50:25.60 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 | [660 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [030731ee]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [656 01-05 02:50:41.60 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 | [68d 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Move state message TRANSACTION -peer1.org2.example.com | [701 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [476 01-05 02:50:25.60 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 | [661 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Move state message TRANSACTION -peer0.org1.example.com | [657 01-05 02:50:41.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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer0.org2.example.com | [68f 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [662 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [658 01-05 02:50:41.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=641a1819-1d97-47ab-b9da-d1119fd5730f,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [690 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [663 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [659 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 chaindID businesschannel -orderer.example.com | [477 01-05 02:50:25.60 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 | [6f5 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [664 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]sending state message TRANSACTION -peer0.org1.example.com | [65a 01-05 02:50:41.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.org2.example.com | [691 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]sending state message TRANSACTION -orderer.example.com | [478 01-05 02:50:25.60 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 | [702 01-05 02:50:55.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [665 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Received message TRANSACTION from shim -peer0.org1.example.com | [65b 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [692 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Received message TRANSACTION from shim -orderer.example.com | [479 01-05 02:50:25.60 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 | [666 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [703 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [65c 01-05 02:50:41.61 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 | [693 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62c20a8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [667 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [030731ee]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [65d 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [641a1819]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [694 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c62c20a8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [668 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [030731ee]Sending GET_STATE -peer1.org2.example.com | [704 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]Move state message COMPLETED -peer1.org1.example.com | [669 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Received message GET_STATE from shim -peer0.org2.example.com | [68e 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -orderer.example.com | [47a 01-05 02:50:25.60 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 | [705 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c94d0795]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [695 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [66a 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [706 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c94d0795]send state message COMPLETED -peer1.org2.example.com | [707 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c94d0795]Received message COMPLETED from shim -peer0.org2.example.com | [696 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [47b 01-05 02:50:25.60 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 | [65e 01-05 02:50:41.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 | [66b 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [030731ee]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [708 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [697 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [65f 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [641a1819]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [66c 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [698 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]Move state message COMPLETED -peer0.org1.example.com | [660 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [641a1819]Move state message TRANSACTION -peer0.org1.example.com | [661 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [641a1819]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [662 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [699 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c62c20a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [69a 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c62c20a8]send state message COMPLETED -peer0.org2.example.com | [69b 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c62c20a8]Received message COMPLETED from shim -peer0.org2.example.com | [69c 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [69d 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [69e 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, channelID:businesschannel -peer0.org2.example.com | [69f 01-05 02:50:47.98 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 | [6a0 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [6a1 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [6a2 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer0.org2.example.com | [6a3 01-05 02:50:47.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:46800) -peer0.org2.example.com | [6a4 01-05 02:50:47.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 | [6a5 01-05 02:50:47.98 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 | [6a6 01-05 02:50:47.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 [3] with [1] transactions -peer0.org2.example.com | [6a7 01-05 02:50:47.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 [3] -peer0.org2.example.com | [6a8 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [709 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [66d 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [030731ee] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [663 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [641a1819]sending state message TRANSACTION -peer0.org1.example.com | [664 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]Received message TRANSACTION from shim -peer0.org2.example.com | [6a9 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 -peer0.org2.example.com | [6aa 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [6ab 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [6ac 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [6ad 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [6ae 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6af 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [6b0 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [6b1 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [6b2 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6b3 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [6b4 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [6b5 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422beddc0 env 0xc421c8dd40 txn 0 -peer0.org2.example.com | [6b6 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c8dd40 -peer0.org2.example.com | [6b7 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [70a 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54, channelID:businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -peer1.org1.example.com | [66f 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [030731ee]Got state. Sending RESPONSE -peer0.org2.example.com | [6b8 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [70b 01-05 02:50:55.93 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 | [6b9 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [70c 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [670 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [030731ee]handleGetState serial send RESPONSE -peer0.org1.example.com | [665 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [641a1819]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [666 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [641a1819]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [667 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [6ba 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org2.example.com | [70d 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [70e 01-05 02:50:55.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 [c94d0795abc97ce31dde2e92969ae9e5b60c4d11d5d9e45b10f82a46cc4d3c54] -peer0.org2.example.com | [6bb 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [70f 01-05 02:50:55.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:41140) -peer1.org1.example.com | [671 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Received message RESPONSE from shim -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -peer0.org2.example.com | [6bc 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [6bd 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42288aa80, header channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU Updates committed to state database -peer0.org1.example.com | [668 01-05 02:50:41.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 | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -peer1.org2.example.com | [711 01-05 02:50:55.93 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 | [669 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [672 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [6be 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer1.org2.example.com | [712 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org2.example.com | [713 01-05 02:50:55.93 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 | [714 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org2.example.com | [715 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [716 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc -peer0.org2.example.com | [6bf 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [66a 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [6c0 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [717 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [6c1 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [673 01-05 02:50:56.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [030731ee]before send -peer1.org1.example.com | [674 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [030731ee]after send -peer1.org1.example.com | [675 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [030731ee]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [718 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [6c2 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer0.org1.example.com | [66b 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [6c3 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [676 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [030731ee]GetState received payload RESPONSE -peer1.org2.example.com | [719 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [71a 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [66c 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org2.example.com | [6c4 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421c8dd40 envbytes 0xc423596000 -peer1.org1.example.com | [677 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Transaction completed. Sending COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [71b 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [6c5 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423596000 -peer1.org2.example.com | [71c 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [678 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Move state message COMPLETED -peer0.org1.example.com | [66d 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [47c 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e288 gate 1515120625604463200 evaluation starts -peer1.org2.example.com | [71d 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [679 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [71e 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [66e 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [4862aac3-87a7-428f-a052-398e036e47c8] -peer0.org2.example.com | [6c6 01-05 02:50:50.10 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 | [47d 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [47e 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [47f 01-05 02:50:25.60 UTC] [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 | [71f 01-05 02:50:55.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [720 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer0.org2.example.com | [6c7 01-05 02:50:50.10 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 = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer1.org2.example.com | [722 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [67a 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]send state message COMPLETED -peer1.org2.example.com | [723 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [480 01-05 02:50:25.60 UTC] [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 | [724 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422297500 env 0xc422464120 txn 0 -peer0.org1.example.com | [66f 01-05 02:50:41.62 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 | [6c8 01-05 02:50:50.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=c7be4a67-909e-4275-8146-3c93a448c233,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [725 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422464120 -orderer.example.com | [481 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 principal matched by identity 0 -peer0.org1.example.com | [670 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [4862aac3-87a7-428f-a052-398e036e47c8] -peer1.org1.example.com | [67b 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Received message COMPLETED from shim -peer0.org2.example.com | [6c9 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc chaindID businesschannel -peer1.org2.example.com | [726 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -orderer.example.com | [482 01-05 02:50:25.60 UTC] [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 e2 3e 3c f2 74 19 fe 1d fe 40 f3 89 18 54 45 7e |.><.t....@...TE~| -orderer.example.com | 00000010 3c bd 31 75 4c ba f5 8a 36 1d 4d 32 7f bf 6b 0e |<.1uL...6.M2..k.| -orderer.example.com | [483 01-05 02:50:25.60 UTC] [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 55 c9 c5 fd 7f 2b 3e dc 32 fb 00 f9 |0D. U....+>.2...| -peer1.org2.example.com | [727 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [6ca 01-05 02:50:50.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 -peer1.org1.example.com | [67c 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 00000010 da 55 a7 cc b9 3d 4a d7 81 fa de dd 5b fa 7b cb |.U...=J.....[.{.| -peer0.org1.example.com | [671 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org1.example.com | [672 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4224fe500)} -peer0.org2.example.com | [6cb 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 00000020 fc 1c 2f c4 02 20 5d 49 6a 17 8a 80 2a 76 39 2f |../.. ]Ij...*v9/| -peer1.org1.example.com | [67d 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [728 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 00000030 cc b2 85 29 a7 7a 31 53 cb 1f 96 08 dc ff f5 e7 |...).z1S........| -peer0.org1.example.com | [673 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [6cc 01-05 02:50:50.11 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 | [67e 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a, channelID:businesschannel -peer1.org1.example.com | [67f 01-05 02:50:56.27 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 | [680 01-05 02:50:56.27 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 | [6cd 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c7be4a67]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [6ce 01-05 02:50:50.11 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 | [729 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [674 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [681 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a channel id: businesschannel version: 1.0 -orderer.example.com | 00000040 c5 aa 06 c1 6c ac |....l.| -peer0.org2.example.com | [6cf 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c7be4a67]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [72a 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [675 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]Move state message COMPLETED -orderer.example.com | [484 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [6d0 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c7be4a67]Move state message TRANSACTION -peer1.org1.example.com | [682 01-05 02:50:56.27 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=030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a,syscc=false,proposal=0xc4230dbc70,canname=exp02:1.0 -peer1.org1.example.com | [683 01-05 02:50:56.27 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=030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a,syscc=true,proposal=0xc4230dbc70,canname=lscc:1.1.0 -peer0.org2.example.com | [6d1 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c7be4a67]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [485 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e288 gate 1515120625604463200 evaluation succeeds -peer0.org1.example.com | [676 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [641a1819]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [684 01-05 02:50:56.27 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 -peer1.org2.example.com | [72b 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [677 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]send state message COMPLETED -peer1.org1.example.com | [685 01-05 02:50:56.27 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 -orderer.example.com | [486 01-05 02:50:25.60 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 | [487 01-05 02:50:25.60 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 | [488 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -peer0.org2.example.com | [6d2 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [6d3 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c7be4a67]sending state message TRANSACTION -peer0.org2.example.com | [6d4 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7be4a67]Received message TRANSACTION from shim -peer0.org2.example.com | [6d5 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c7be4a67]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [6d6 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c7be4a67]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [6d7 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [6d8 01-05 02:50:50.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 | [6d9 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | [489 01-05 02:50:25.60 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 | [72c 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423171800, header channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -peer0.org1.example.com | [678 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [641a1819]Received message COMPLETED from shim -orderer.example.com | [48a 01-05 02:50:25.60 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 | [6da 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [686 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org2.example.com | [72d 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [679 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [641a1819]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [48b 01-05 02:50:25.60 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 | [48c 01-05 02:50:25.60 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:47168 -peer0.org2.example.com | [6db 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 | [72e 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [6dc 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org1.example.com | [67a 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [641a1819-1d97-47ab-b9da-d1119fd5730f]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [687 01-05 02:50:56.27 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 [030731ee]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [6dd 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [48d 01-05 02:50:25.60 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.6:7050->172.18.0.7:47168: read: connection reset by peer -orderer.example.com | [48f 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [490 01-05 02:50:25.60 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 | [491 01-05 02:50:25.60 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 | [6de 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [18aa1d21-973e-4b3c-86cf-5788d400040c] -peer1.org2.example.com | [72f 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [688 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.GetCDS.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [6df 01-05 02:50:50.11 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 | [6e0 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [18aa1d21-973e-4b3c-86cf-5788d400040c] -peer1.org2.example.com | [730 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [492 01-05 02:50:25.60 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 | [67b 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:641a1819-1d97-47ab-b9da-d1119fd5730f, channelID:businesschannel -peer0.org1.example.com | [67c 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [6e1 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [731 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org2.example.com | [732 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [733 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422464120 envbytes 0xc422372000 -peer1.org2.example.com | [734 01-05 02:50:58.13 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 = [65afd982-4cbd-404b-a1ac-23ebbfba1c83] -peer0.org2.example.com | [6e2 01-05 02:50:50.11 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4219c4ea0)} -peer0.org2.example.com | [6e3 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org2.example.com | [735 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [736 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [65afd982-4cbd-404b-a1ac-23ebbfba1c83] -peer1.org2.example.com | [737 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422372000 -orderer.example.com | [493 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [6e4 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7be4a67]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [6e5 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7be4a67]Move state message COMPLETED -peer0.org1.example.com | [67d 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -peer1.org2.example.com | [738 01-05 02:50:58.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 | [689 01-05 02:50:56.27 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.org2.example.com | [6e6 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c7be4a67]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [6e7 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c7be4a67]send state message COMPLETED -peer0.org2.example.com | [6e8 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c7be4a67]Received message COMPLETED from shim -peer1.org2.example.com | [739 01-05 02:50:58.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 = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -orderer.example.com | [494 01-05 02:50:25.61 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.org1.example.com | [67e 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42258e380 -peer0.org2.example.com | [6e9 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c7be4a67]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [68a 01-05 02:50:56.27 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 [030731ee]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [73a 01-05 02:50:58.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=5e629cd8-cc45-4d68-bf5d-5501bc2d1b8c,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [73b 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 chaindID businesschannel -orderer.example.com | [495 01-05 02:50:25.61 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 | [67f 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422a4d650 envbytes 0xc42258e380 -peer0.org2.example.com | [6ea 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c7be4a67-909e-4275-8146-3c93a448c233]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [68b 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Move state message TRANSACTION -peer0.org2.example.com | [6eb 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c7be4a67-909e-4275-8146-3c93a448c233, channelID:businesschannel -peer1.org1.example.com | [68c 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [68d 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [68e 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]sending state message TRANSACTION -peer1.org1.example.com | [68f 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Received message TRANSACTION from shim -peer0.org2.example.com | [6ec 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [6ed 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, error Chaincode exp02 is already instantiated -peer0.org2.example.com | [6ee 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer0.org2.example.com | [6ef 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423596000 -peer0.org2.example.com | [6f0 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421c8dd40 envbytes 0xc423596000 -peer0.org2.example.com | [6f1 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc returned error Chaincode exp02 is already instantiated -peer0.org2.example.com | [6f3 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer0.org2.example.com | [6f4 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [73c 01-05 02:50:58.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 -orderer.example.com | [496 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [497 01-05 02:50:25.61 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 | [498 01-05 02:50:25.61 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 | [6f5 01-05 02:50:50.12 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 | [73d 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [73e 01-05 02:50:58.13 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 | [73f 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5e629cd8]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [690 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [6f6 01-05 02:50:50.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] -peer0.org2.example.com | [6f7 01-05 02:50:50.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] -peer0.org2.example.com | [6f8 01-05 02:50:50.12 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 | [6f9 01-05 02:50:50.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 [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer0.org2.example.com | [6fa 01-05 02:50:50.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 | [6fb 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [499 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [49a 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [6fc 01-05 02:50:50.12 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-05 02:50:50.12 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 | [691 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [030731ee]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [692 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [030731ee]Sending GET_STATE -peer1.org1.example.com | [693 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Received message GET_STATE from shim -peer0.org2.example.com | [6f2 01-05 02:50:50.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422beddc0 env 0xc421c8dd40 txn 0 -orderer.example.com | [49b 01-05 02:50:25.61 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 | [740 01-05 02:50:58.13 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 | [680 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4226c22e0 env 0xc422a4d650 txn 0 -peer1.org1.example.com | [694 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [49c 01-05 02:50:25.61 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 | [741 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5e629cd8]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [695 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [030731ee]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [681 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [6fe 01-05 02:50:50.12 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 | [49d 01-05 02:50:25.61 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.org1.example.com | [696 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [6ff 01-05 02:50:50.13 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{0x4, 0x54, 0x21, 0x67, 0xdf, 0x21, 0x1b, 0x2e, 0xa, 0xd7, 0xd0, 0x9, 0xa7, 0xc, 0xf3, 0x44, 0x38, 0x6f, 0x1f, 0x90, 0x3, 0x52, 0xcd, 0xef, 0x5, 0x8a, 0x93, 0xb8, 0xa, 0xcf, 0x60, 0x61} txOffsets= -orderer.example.com | [49e 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -orderer.example.com | [49f 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer1.org2.example.com | [742 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e629cd8]Move state message TRANSACTION -peer1.org2.example.com | [743 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5e629cd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | txId=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc locPointer=offset=70, bytesLength=3460 -peer0.org1.example.com | [682 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [4a0 01-05 02:50:25.61 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 | [697 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [030731ee] getting state for chaincode lscc, key exp02, channel businesschannel +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] +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] +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 +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 +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] +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 | ] -orderer.example.com | [4a1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [683 01-05 02:50:41.63 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 | [744 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [698 01-05 02:50:56.27 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 | [700 01-05 02:50:50.13 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=3460] for tx ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to index -orderer.example.com | [4a2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [684 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [699 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [030731ee]Got state. Sending RESPONSE -peer1.org2.example.com | [745 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e629cd8]sending state message TRANSACTION -peer0.org2.example.com | [701 01-05 02:50:50.13 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=3460] for tx number:[0] ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to blockNumTranNum index -orderer.example.com | [4a3 01-05 02:50:25.61 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 | [685 01-05 02:50:41.63 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 | [69a 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [030731ee]handleGetState serial send RESPONSE -peer1.org2.example.com | [746 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e629cd8]Received message TRANSACTION from shim -peer0.org1.example.com | [686 01-05 02:50:41.63 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 | [702 01-05 02:50:50.13 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 | [69b 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Received message RESPONSE from shim -orderer.example.com | [4a4 01-05 02:50:25.61 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 | [747 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e629cd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [687 01-05 02:50:41.63 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 | [4a5 01-05 02:50:25.61 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 | [748 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5e629cd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [749 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [74a 01-05 02:50:58.13 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 | [69c 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [703 01-05 02:50:50.13 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 | [688 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [74b 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [4a6 01-05 02:50:25.61 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 | [704 01-05 02:50:50.13 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 | [69d 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [030731ee]before send -peer0.org1.example.com | [689 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer0.org1.example.com | [68a 01-05 02:50:41.63 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 [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] marked as valid by state validator -peer0.org1.example.com | [68b 01-05 02:50:41.63 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 | [74c 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e629cd8]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [74d 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e629cd8]Move state message COMPLETED -orderer.example.com | [4a7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org1.example.com | [68c 01-05 02:50:41.63 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 | [69e 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [030731ee]after send -peer1.org2.example.com | [74e 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e629cd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [68d 01-05 02:50:41.63 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 | [705 01-05 02:50:50.13 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 | [74f 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e629cd8]send state message COMPLETED -orderer.example.com | [4a8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer1.org1.example.com | [69f 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [030731ee]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [6a0 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [030731ee]GetState received payload RESPONSE -peer1.org1.example.com | [6a1 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [6a2 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Move state message COMPLETED -peer1.org1.example.com | [6a3 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [6a4 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]send state message COMPLETED -peer1.org1.example.com | [6a5 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Received message COMPLETED from shim -peer1.org1.example.com | [6a6 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [6a7 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [750 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e629cd8]Received message COMPLETED from shim -peer1.org2.example.com | [751 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5e629cd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [4a9 01-05 02:50:25.61 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 | [6a8 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a, channelID:businesschannel -peer1.org1.example.com | [6a9 01-05 02:50:56.27 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.org1.example.com | [6aa 01-05 02:50:56.27 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 -peer1.org1.example.com | [6ab 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -peer1.org1.example.com | [6ac 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [6ad 01-05 02:50:56.27 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 | [4aa 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer0.org2.example.com | [706 01-05 02:50:50.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer0.org2.example.com | [707 01-05 02:50:50.13 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-05 02:50:50.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.org2.example.com | [709 01-05 02:50:50.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [6ae 01-05 02:50:56.27 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 | [6af 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [6b0 01-05 02:50:56.27 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 | [6b1 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [6b2 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-exp02-1.0) lock -peer1.org1.example.com | [6b3 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-exp02-1.0) lock -peer1.org1.example.com | [6b4 01-05 02:50:56.27 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 | [6b5 01-05 02:50:56.27 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) -orderer.example.com | [4ab 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ea98 gate 1515120625611913500 evaluation starts -orderer.example.com | [4ac 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [6b6 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) -peer1.org1.example.com | [6b7 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) -peer1.org1.example.com | [6b8 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-exp02-1.0 -peer1.org1.example.com | [6b9 01-05 02:50:56.27 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org1.example.com | [6ba 01-05 02:50:56.28 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -peer1.org1.example.com | [6bb 01-05 02:50:56.28 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 | [6bc 01-05 02:50:56.28 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.4.2 -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org1.example.com | org.hyperledger.fabric.version="1.1.0" \ -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.4.2" -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -orderer.example.com | [4ad 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [4ae 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [4af 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 principal matched by identity 0 -orderer.example.com | [4b0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 11 86 ad 3a 42 db 3b 7d e5 0e 5a 3f 91 25 1d b7 |...:B.;}..Z?.%..| -peer1.org1.example.com | [6bd 01-05 02:50:56.28 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 | [752 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5e629cd8-cc45-4d68-bf5d-5501bc2d1b8c]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [68e 01-05 02:50:41.63 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 | [70a 01-05 02:50:50.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer1.org1.example.com | [6be 01-05 02:50:56.28 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -orderer.example.com | 00000010 e4 da 7e fb b0 79 dc 1a 90 40 35 27 16 d9 13 ae |..~..y...@5'....| -orderer.example.com | [4b1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5e 5c 7b 9d f0 8d 44 22 97 f1 ad 2c |0D. ^\{...D"...,| -peer1.org2.example.com | [753 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5e629cd8-cc45-4d68-bf5d-5501bc2d1b8c, channelID:businesschannel -peer0.org1.example.com | [68f 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -peer0.org1.example.com | [690 01-05 02:50:41.63 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{0xe, 0x90, 0x8f, 0xe0, 0x5d, 0x11, 0xe, 0x2b, 0x26, 0x2, 0x93, 0x17, 0xd8, 0xf4, 0xe7, 0xf8, 0x68, 0xa3, 0x4e, 0xab, 0x6, 0x60, 0xe1, 0x9e, 0xc6, 0x8a, 0x90, 0xc8, 0x16, 0x7f, 0xf0, 0xb9} txOffsets= -peer0.org1.example.com | txId=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 locPointer=offset=70, bytesLength=3455 -orderer.example.com | 00000010 98 4c 0a b0 4f 33 e1 fe 4f eb 78 a8 9e d4 77 89 |.L..O3..O.x...w.| -peer1.org1.example.com | [6bf 01-05 02:50:56.29 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 | [6c0 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [754 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [70b 01-05 02:50:50.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 [4] with [1] transactions -orderer.example.com | 00000020 9e c1 3e d4 02 20 6d 70 aa f1 fd a3 43 4d fd bc |..>.. mp....CM..| -peer0.org1.example.com | ] -peer1.org2.example.com | [755 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org1.example.com | [6c1 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | 00000030 8b de 16 ff 85 14 0d 97 8c 17 8d 0f 3f fd b0 bd |............?...| -peer0.org1.example.com | [691 01-05 02:50:41.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=40166, bytesLength=3455] for tx ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to index -peer0.org2.example.com | [70c 01-05 02:50:50.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 -peer1.org1.example.com | [6c2 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc421a3cd80 env 0xc421885620 txn 0 -peer1.org2.example.com | [756 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422372000 -orderer.example.com | 00000040 0a 89 62 d0 f4 9c |..b...| -peer1.org1.example.com | [6c3 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421885620 -orderer.example.com | [4b2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [70d 01-05 02:50:50.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 [4] -peer0.org1.example.com | [692 01-05 02:50:41.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=40166, bytesLength=3455] for tx number:[0] ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to blockNumTranNum index -peer1.org2.example.com | [757 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422464120 envbytes 0xc422372000 -peer1.org1.example.com | [6c4 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -orderer.example.com | [4b3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ea98 gate 1515120625611913500 evaluation succeeds -peer0.org2.example.com | [70e 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [693 01-05 02:50:41.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=[45416], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org1.example.com | [6c5 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [758 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422297500 env 0xc422464120 txn 0 -peer0.org2.example.com | [70f 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc -orderer.example.com | [48e 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47168: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | [759 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [6c6 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [710 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [711 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [75a 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [694 01-05 02:50:41.64 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 | [695 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -peer0.org1.example.com | [696 01-05 02:50:41.64 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 | [4b5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer1.org2.example.com | [75b 01-05 02:50:58.13 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 | [6c7 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer0.org1.example.com | [697 01-05 02:50:41.64 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 | [698 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [699 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [69a 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [69b 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -orderer.example.com | [4b4 01-05 02:50:25.61 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 | [75c 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [6c8 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [4b6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [4b7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [4b8 01-05 02:50:25.61 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 | [4b9 01-05 02:50:25.61 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 | [4ba 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [4bb 01-05 02:50:25.61 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 | [75d 01-05 02:50:58.13 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 | [75e 01-05 02:50:58.13 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 | [6c9 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [712 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [713 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [714 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [715 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [716 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [717 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [718 01-05 02:50:50.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [719 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [71a 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [4bc 01-05 02:50:25.61 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 | [69c 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer0.org2.example.com | [71b 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4226ed7e0 env 0xc4226d78f0 txn 0 -peer1.org2.example.com | [75f 01-05 02:50:58.13 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 | [4bd 01-05 02:50:25.61 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 | [4be 01-05 02:50:25.61 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 | [4bf 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [6ca 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421bc7800, header channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -peer0.org2.example.com | [71c 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4226d78f0 -peer1.org2.example.com | [760 01-05 02:50:58.13 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 | [69d 01-05 02:50:41.64 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 | [4c0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [71d 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -peer1.org1.example.com | [6cb 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [761 01-05 02:50:58.13 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 | [4c1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [6cc 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [6cd 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [6ce 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [762 01-05 02:50:58.13 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 | [763 01-05 02:50:58.13 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 | [764 01-05 02:50:58.13 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 | [6cf 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer0.org1.example.com | [69e 01-05 02:50:41.64 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 | [71e 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [4c2 01-05 02:50:25.61 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 | [4c3 01-05 02:50:25.61 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 | [4c4 01-05 02:50:25.61 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 | [765 01-05 02:50:58.13 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 | [766 01-05 02:50:58.13 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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] marked as valid by state validator -peer1.org2.example.com | [767 01-05 02:50:58.13 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 | [768 01-05 02:50:58.13 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 | [6d0 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [6d1 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc421885620 envbytes 0xc422c98400 -peer1.org1.example.com | [6d2 01-05 02:50:58.18 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 = [648839de-b12f-4100-aac4-1dd7760f912c] -orderer.example.com | [4c5 01-05 02:50:25.61 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 | [769 01-05 02:50:58.13 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 | [71f 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [6d3 01-05 02:50:58.18 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 | [4c6 01-05 02:50:25.61 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 | [69f 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer1.org2.example.com | [76a 01-05 02:50:58.13 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 | [720 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org1.example.com | [6d4 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [648839de-b12f-4100-aac4-1dd7760f912c] -orderer.example.com | [4c7 01-05 02:50:25.61 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 | [6a0 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org2.example.com | [721 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org2.example.com | [721 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [6d5 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422c98400 -orderer.example.com | [4c8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [6a1 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [76b 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] -peer0.org2.example.com | [722 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [6d6 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [4c9 01-05 02:50:25.61 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 | [4cb 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [76c 01-05 02:50:58.14 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{0x1a, 0x80, 0x18, 0x1d, 0x93, 0xc3, 0x60, 0x8e, 0xce, 0xbf, 0x47, 0x31, 0xed, 0x4e, 0xf9, 0xa0, 0x87, 0xb9, 0xd2, 0xce, 0x1f, 0xf7, 0x3b, 0xc3, 0xc0, 0x4d, 0x5a, 0xeb, 0x7b, 0x63, 0x3c, 0x18} txOffsets= -orderer.example.com | [4ca 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47166: rpc error: code = Canceled desc = context canceled -orderer.example.com | [4cc 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer1.org2.example.com | txId=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 locPointer=offset=70, bytesLength=2917 -peer0.org2.example.com | [723 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422f6d000, header channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -peer0.org1.example.com | [6a2 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 -peer1.org1.example.com | [6d7 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -orderer.example.com | [4cd 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | ] -peer0.org2.example.com | [724 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [6a3 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [6d8 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=adc00e0e-6d94-4c8b-a52b-6fd35ad32295,syscc=true,proposal=0x0,canname=vscc:1.1.0 -orderer.example.com | [4ce 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [76d 01-05 02:50:58.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=50812, bytesLength=2917] for tx ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to index -peer0.org2.example.com | [725 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [6a4 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [6d9 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 chaindID businesschannel -orderer.example.com | [4cf 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [76e 01-05 02:50:58.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=50812, bytesLength=2917] for tx number:[0] ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to blockNumTranNum index -peer0.org2.example.com | [726 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [727 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [6da 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -peer1.org1.example.com | [6db 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [6dc 01-05 02:50:58.18 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 | [6dd 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [adc00e0e]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [6de 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [4d0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [76f 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [770 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -peer1.org2.example.com | [771 01-05 02:50:58.15 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 | [772 01-05 02:50:58.15 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 | [773 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer1.org1.example.com | [6df 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [adc00e0e]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [4d1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [6a5 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [728 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org2.example.com | [774 01-05 02:50:58.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 | [4d2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [775 01-05 02:50:58.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 -peer1.org1.example.com | [6e0 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [adc00e0e]Move state message TRANSACTION -peer0.org1.example.com | [6a6 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [6a7 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [776 01-05 02:50:58.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}] -peer1.org2.example.com | [777 01-05 02:50:58.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}] -peer1.org2.example.com | [778 01-05 02:50:58.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 | [779 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer1.org1.example.com | [6e1 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [adc00e0e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [6e2 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [6e3 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [adc00e0e]sending state message TRANSACTION -peer1.org1.example.com | [6e4 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [adc00e0e]Received message TRANSACTION from shim -peer1.org1.example.com | [6e5 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [adc00e0e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [6e6 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [adc00e0e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [6e7 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [6e8 01-05 02:50:58.18 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 | [6e9 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | [4d3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [77a 01-05 02:50:58.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 [5] with [1] transactions -peer0.org2.example.com | [729 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [6a8 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [6a9 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [6aa 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [6ea 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [adc00e0e]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [77b 01-05 02:50:58.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 [5] -peer1.org2.example.com | [77c 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [77d 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 -peer1.org2.example.com | [77e 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [77f 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [780 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [781 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [4d4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [6eb 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [adc00e0e]Move state message COMPLETED -peer1.org2.example.com | [782 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [4d5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [72a 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4226d78f0 envbytes 0xc422f70400 -peer0.org1.example.com | [6ab 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [6ec 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [adc00e0e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [4d6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [72b 01-05 02:50:58.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 = [c64e292d-6aa3-4379-b19b-62ede232fd89] -peer1.org2.example.com | [783 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [6ed 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [adc00e0e]send state message COMPLETED -peer0.org1.example.com | [6ac 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -orderer.example.com | [4d7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [72c 01-05 02:50:58.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 -peer1.org2.example.com | [784 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [6ee 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [adc00e0e]Received message COMPLETED from shim -peer0.org1.example.com | [6ae 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [72d 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c64e292d-6aa3-4379-b19b-62ede232fd89] -orderer.example.com | [4d8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [785 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [6ef 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [adc00e0e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [6af 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [72e 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422f70400 -orderer.example.com | [4d9 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [786 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [6f0 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [adc00e0e-6d94-4c8b-a52b-6fd35ad32295]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [6b0 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b802a0 env 0xc4230e02a0 txn 0 -peer0.org2.example.com | [72f 01-05 02:50:58.15 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 | [4da 01-05 02:50:25.61 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 | [787 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:41152 -peer0.org1.example.com | [6ad 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org1.example.com | [6f1 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:adc00e0e-6d94-4c8b-a52b-6fd35ad32295, channelID:businesschannel -peer0.org2.example.com | [730 01-05 02:50:58.15 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 = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org2.example.com | [788 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422fd6ea0 -orderer.example.com | [4db 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [6f2 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [789 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [4dc 01-05 02:50:25.61 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 | [6b1 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4230e02a0 -peer0.org2.example.com | [731 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=d2e943aa-0e87-4acf-8f0e-500c377c88db,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org1.example.com | [6f3 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org2.example.com | [78a 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [4dd 01-05 02:50:25.61 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 | [6b2 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU VSCCValidateTxForCC completes for envbytes 0xc422c98400 -peer1.org2.example.com | [78b 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -orderer.example.com | [4de 01-05 02:50:25.61 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 | [6b3 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [732 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 chaindID businesschannel -peer1.org1.example.com | [6f5 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc421885620 envbytes 0xc422c98400 -peer1.org2.example.com | [78c 01-05 02:51:03.48 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 | [733 01-05 02:50:58.15 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 | [4df 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [78d 01-05 02:51:03.48 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 | [6b4 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [6f6 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc421a3cd80 env 0xc421885620 txn 0 -orderer.example.com | [4e0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [78e 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42335dea0, header 0xc422fd6ed0 -peer0.org2.example.com | [734 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [6f7 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [6b5 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer1.org2.example.com | [78f 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [735 01-05 02:50:58.15 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 | [790 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [6b6 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [6f8 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [791 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686] -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [736 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e943aa]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [6f9 01-05 02:50:58.18 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 | [6b7 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [792 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [737 01-05 02:50:58.15 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 | [6fa 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [793 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686] -peer0.org1.example.com | [6b8 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422bb6000, header channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU [d2e943aa]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [6fb 01-05 02:50:58.18 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 | [794 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686 channel id: businesschannel -peer0.org1.example.com | [6b9 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [739 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e943aa]Move state message TRANSACTION -peer1.org1.example.com | [6fc 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [6ba 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [795 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686,syscc=true,proposal=0xc42335dea0,canname=lscc:1.1.0 -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [6fd 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [796 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [73a 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2e943aa]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6bb 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [797 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [73b 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer1.org1.example.com | [6fe 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [798 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org1.example.com | [6bc 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [73c 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e943aa]sending state message TRANSACTION -peer1.org2.example.com | [799 01-05 02:51:03.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4d3f075]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer1.org1.example.com | [6ff 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [6bd 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer0.org2.example.com | [73d 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e943aa]Received message TRANSACTION from shim -peer1.org2.example.com | [79a 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [79b 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [700 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer0.org1.example.com | [6be 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [73e 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e943aa]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [79c 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4d3f075]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [701 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org1.example.com | [6bf 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4230e02a0 envbytes 0xc422e15000 -peer1.org2.example.com | [79d 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Move state message TRANSACTION -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org2.example.com | [73f 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d2e943aa]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [79e 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [702 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org2.example.com | [79f 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [740 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [6c0 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e15000 -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [7a0 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]sending state message TRANSACTION -peer1.org1.example.com | [703 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org2.example.com | [741 01-05 02:50:58.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 | [6c1 01-05 02:50:50.03 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 | [7a1 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]Received message TRANSACTION from shim -orderer.example.com | [4e1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [704 01-05 02:50:58.18 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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] marked as valid by state validator -peer1.org2.example.com | [7a2 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4d3f075]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [742 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [6c2 01-05 02:50:50.03 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 = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -peer1.org2.example.com | [7a3 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4d3f075]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [705 01-05 02:50:58.18 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 | [743 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e943aa]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [7a4 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f4d3f075]Sending GET_STATE -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [6c3 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=dfe6ddf3-afeb-4697-a826-27b835bddeda,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [7a5 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Received message GET_STATE from shim -peer1.org1.example.com | [706 01-05 02:50:58.18 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 | [744 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e943aa]Move state message COMPLETED -peer0.org1.example.com | [6c4 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc chaindID businesschannel -peer1.org2.example.com | [7a6 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [745 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e943aa]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [707 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [7a7 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f4d3f075]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [6c5 01-05 02:50:50.03 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 | [708 01-05 02:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer1.org2.example.com | [7a9 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4d3f075] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org2.example.com | [746 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e943aa]send state message COMPLETED -peer0.org1.example.com | [6c6 01-05 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer1.org2.example.com | [7aa 01-05 02:51:03.49 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 | [709 01-05 02:50:58.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 [5] -peer0.org2.example.com | [747 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e943aa]Received message COMPLETED from shim -peer0.org1.example.com | [6c7 01-05 02:50:50.05 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 | [7ab 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4d3f075]Got state. Sending RESPONSE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [7ac 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4d3f075]handleGetState serial send RESPONSE -peer0.org1.example.com | [6c8 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dfe6ddf3]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [7ad 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]Received message RESPONSE from shim -peer0.org2.example.com | [748 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2e943aa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [70a 01-05 02:50:58.19 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{0x1a, 0x80, 0x18, 0x1d, 0x93, 0xc3, 0x60, 0x8e, 0xce, 0xbf, 0x47, 0x31, 0xed, 0x4e, 0xf9, 0xa0, 0x87, 0xb9, 0xd2, 0xce, 0x1f, 0xf7, 0x3b, 0xc3, 0xc0, 0x4d, 0x5a, 0xeb, 0x7b, 0x63, 0x3c, 0x18} txOffsets= -peer1.org2.example.com | [7ae 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4d3f075]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [6c9 01-05 02:50:50.05 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 | [749 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d2e943aa-0e87-4acf-8f0e-500c377c88db]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [7af 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4d3f075]before send -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org1.example.com | txId=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 locPointer=offset=70, bytesLength=2917 -peer1.org2.example.com | [7b0 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4d3f075]after send -peer0.org2.example.com | [74a 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d2e943aa-0e87-4acf-8f0e-500c377c88db, channelID:businesschannel -peer0.org1.example.com | [6ca 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dfe6ddf3]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [7b1 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f4d3f075]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | ] -peer0.org2.example.com | [74b 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [7b2 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f4d3f075]GetState received payload RESPONSE -peer0.org1.example.com | [6cb 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfe6ddf3]Move state message TRANSACTION -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org2.example.com | [74c 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org1.example.com | [70b 01-05 02:50:58.19 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=2917] for tx ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to index -peer1.org2.example.com | [7b3 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]Transaction completed. Sending COMPLETED -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [6cc 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dfe6ddf3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [74d 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422f70400 -peer1.org2.example.com | [7b4 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]Move state message COMPLETED -peer1.org2.example.com | [7b5 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4d3f075]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [70c 01-05 02:50:58.19 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=2917] for tx number:[0] ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to blockNumTranNum index -peer0.org1.example.com | [6cd 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [74e 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4226d78f0 envbytes 0xc422f70400 -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org2.example.com | [7b6 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]send state message COMPLETED -peer1.org1.example.com | [70d 01-05 02:50:58.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org2.example.com | [74f 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4226ed7e0 env 0xc4226d78f0 txn 0 -peer1.org2.example.com | [7a8 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6ce 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfe6ddf3]sending state message TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [70e 01-05 02:50:58.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -peer1.org2.example.com | [7b7 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Received message COMPLETED from shim -orderer.example.com | [4e2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [750 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [6cf 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]Received message TRANSACTION from shim -peer0.org1.example.com | [6d0 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfe6ddf3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [4e3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [70f 01-05 02:50:58.19 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 | [710 01-05 02:50:58.19 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 | [711 01-05 02:50:58.19 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 | [7b8 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [7b9 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [7ba 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686, channelID:businesschannel -peer1.org2.example.com | [7bb 01-05 02:51:03.49 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 | [7bc 01-05 02:51:03.49 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.org2.example.com | [7bd 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686 channel id: businesschannel version: 1.0 -peer1.org2.example.com | [7be 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686,syscc=false,proposal=0xc42335dea0,canname=exp02:1.0 -peer1.org2.example.com | [7bf 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -peer1.org2.example.com | [7c0 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [7c1 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | [4e4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [4e5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [4e6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [4e7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [4e8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [7c2 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4d3f075]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [712 01-05 02:50:58.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [713 01-05 02:51:02.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -peer1.org1.example.com | [714 01-05 02:51:02.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org1.example.com | [715 01-05 02:51:02.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -peer1.org1.example.com | [716 01-05 02:51:02.50 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -peer1.org1.example.com | [717 01-05 02:51:03.25 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-exp02-1.0 -peer1.org1.example.com | [718 01-05 02:51:03.25 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-exp02-1.0) -peer1.org1.example.com | [719 01-05 02:51:03.35 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 | [71a 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | [4e9 01-05 02:50:25.61 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 | [6d1 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dfe6ddf3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [6d2 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [71b 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [751 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [4ea 01-05 02:50:25.61 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 | [6d3 01-05 02:50:50.05 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 | [71c 01-05 02:51:03.35 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 | [7c3 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [71d 01-05 02:51:03.35 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 | [4eb 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [752 01-05 02:50:58.15 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 | [7c4 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [7c5 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4d3f075]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [7c6 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Move state message TRANSACTION -peer1.org2.example.com | [7c7 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [71e 01-05 02:51:03.35 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 | [4ec 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [4ed 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [4ee 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [71f 01-05 02:51:03.35 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 | [7c8 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6d4 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [753 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [7c9 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]sending state message TRANSACTION -peer1.org1.example.com | [720 01-05 02:51:03.35 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [7ca 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Received message GET_STATE from shim -peer1.org2.example.com | [7cb 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [7cc 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f4d3f075]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [7cd 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [7ce 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4d3f075] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [7cf 01-05 02:51:03.49 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 | [7d0 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4d3f075]Got state. Sending RESPONSE -peer1.org2.example.com | [7d1 01-05 02:51:03.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4d3f075]handleGetState serial send RESPONSE -peer1.org1.example.com | [721 01-05 02:51:03.35 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 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [6d5 01-05 02:50:50.05 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 | [6d6 01-05 02:50:50.05 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 | [7d2 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Received message COMPLETED from shim -peer0.org1.example.com | [6d7 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [722 01-05 02:51:03.35 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 | [723 01-05 02:51:03.35 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 | [724 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [725 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Move state message READY -peer1.org1.example.com | [726 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [727 01-05 02:51:03.35 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 [030731ee]Entered state ready -peer1.org2.example.com | [7d3 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [7d4 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [7d5 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686, channelID:businesschannel -peer1.org2.example.com | [7d6 01-05 02:51:03.50 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 | [7d7 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org1.example.com | [728 01-05 02:51:03.35 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:030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a, channelID:businesschannel -peer1.org2.example.com | [7d8 01-05 02:51:03.50 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 | 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 | [4ef 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | 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 -peer1.org1.example.com | [729 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]sending state message READY -peer1.org2.example.com | [7d9 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686] -peer0.org2.example.com | [754 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -peer0.org2.example.com | [755 01-05 02:50:58.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer1.org2.example.com | [7da 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [6d8 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [6d9 01-05 02:50:50.05 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 = [448b7c55-a780-4caa-b80b-7d12d9a37c87] -peer0.org1.example.com | [6da 01-05 02:50:50.05 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 | [6db 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [448b7c55-a780-4caa-b80b-7d12d9a37c87] -peer0.org1.example.com | [6dc 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org1.example.com | [6dd 01-05 02:50:50.05 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)(0xc4224fe500)} -peer0.org1.example.com | [6de 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer0.org1.example.com | [6df 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [6e0 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]Move state message COMPLETED -peer0.org1.example.com | [6e1 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfe6ddf3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [6e2 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]send state message COMPLETED -peer1.org1.example.com | [72a 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [7db 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686 channel id: businesschannel chaincode id: name:"exp02" -peer1.org2.example.com | [7dc 01-05 02:51:03.50 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.org2.example.com | [7dd 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [7de 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686,syscc=true,proposal=0xc42335dea0,canname=escc:1.1.0 -peer1.org2.example.com | [7df 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org1.example.com | [72b 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | [4f0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [7e0 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [756 01-05 02:50:58.15 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 | [757 01-05 02:50:58.16 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 | [758 01-05 02:50:58.16 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 | [759 01-05 02:50:58.16 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 | [72c 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [4f1 01-05 02:50:25.61 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 | [7e1 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [7e2 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4d3f075]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [7e3 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [7e4 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [7e5 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4d3f075]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [7e6 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Move state message TRANSACTION -orderer.example.com | [4f2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [4f3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [4f4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [4f5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [4f6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [4f7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [4f8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [72d 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer1.org2.example.com | [7e7 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [7e8 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [7e9 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]sending state message TRANSACTION -peer1.org2.example.com | [7ea 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]Received message TRANSACTION from shim -peer1.org2.example.com | [7eb 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4d3f075]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [7ec 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4d3f075]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [7ed 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [7ee 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [7ef 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [7f0 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]Move state message COMPLETED -orderer.example.com | [4f9 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [72e 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [030731ee]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [75a 01-05 02:50:58.16 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 | [4fa 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | 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 -peer1.org1.example.com | [72f 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [7f1 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4d3f075]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [730 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [7f2 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4d3f075]send state message COMPLETED -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer0.org1.example.com | [6e3 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfe6ddf3]Received message COMPLETED from shim -peer0.org1.example.com | [6e4 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dfe6ddf3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [731 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [030731ee]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [7f3 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4d3f075]Received message COMPLETED from shim -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -orderer.example.com | vA2BLfriqQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [4fb 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [7f4 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [732 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Move state message TRANSACTION -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org2.example.com | [75b 01-05 02:50:58.16 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 | [7f5 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [7f6 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686, channelID:businesschannel -peer1.org2.example.com | [7f7 01-05 02:51:03.50 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 | [7f8 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [7f9 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [7fa 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f4d3f075d359d4b1c0edf27c45a3714a431744dc6f1573be1d0a698c73664686] -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | [7fb 01-05 02:51:03.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:41152) -peer1.org1.example.com | [733 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [734 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [735 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]sending state message TRANSACTION -peer1.org1.example.com | [736 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Received message GET_STATE from shim -peer1.org1.example.com | [737 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [7fc 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:41154 -peer1.org2.example.com | [7fd 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422f5b800 -peer1.org2.example.com | [7fe 01-05 02:51:03.60 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 | [7ff 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [800 01-05 02:51:03.60 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 | [801 01-05 02:51:03.60 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -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 -orderer.example.com | R0L5Jr8878bLU6IcEA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [4fc 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [4fd 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [4fe 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [4ff 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [500 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [501 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [738 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [030731ee]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [802 01-05 02:51:03.60 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 | [803 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422af5720, header 0xc422f5b830 -peer1.org2.example.com | [804 01-05 02:51:03.60 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 | [805 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 -orderer.example.com | [502 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer1.org1.example.com | [739 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6e5 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dfe6ddf3-afeb-4697-a826-27b835bddeda]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [75c 01-05 02:50:58.16 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 | [806 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -orderer.example.com | [503 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org1.example.com | [6e6 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:dfe6ddf3-afeb-4697-a826-27b835bddeda, channelID:businesschannel -peer1.org1.example.com | [73a 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [030731ee] getting state for chaincode exp02, key a, channel businesschannel -peer0.org2.example.com | [75d 01-05 02:50:58.16 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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] marked as valid by state validator -peer1.org2.example.com | [807 01-05 02:51:03.61 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 | [504 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [505 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org1.example.com | [73b 01-05 02:51:03.35 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 | [75e 01-05 02:50:58.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [808 01-05 02:51:03.61 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 = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org1.example.com | [6e7 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [506 01-05 02:50:25.62 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 | [73c 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [030731ee]Got state. Sending RESPONSE -peer0.org2.example.com | [75f 01-05 02:50:58.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [809 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 channel id: businesschannel -peer0.org1.example.com | [6e8 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, error Chaincode exp02 is already instantiated -orderer.example.com | [507 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org1.example.com | [73d 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [030731ee]handleGetState serial send RESPONSE -peer0.org2.example.com | [760 01-05 02:50:58.16 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 | [80a 01-05 02:51:03.61 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=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403,syscc=true,proposal=0xc422af5720,canname=lscc:1.1.0 -peer0.org1.example.com | [6e9 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -orderer.example.com | [508 01-05 02:50:25.62 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 | [6ea 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e15000 -peer1.org1.example.com | [73e 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Received message COMPLETED from shim -peer0.org2.example.com | [761 01-05 02:50:58.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer1.org2.example.com | [80b 01-05 02:51:03.61 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 | [509 01-05 02:50:25.62 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 | [6eb 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4230e02a0 envbytes 0xc422e15000 -peer1.org1.example.com | [73f 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [762 01-05 02:50:58.16 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] -peer1.org2.example.com | [80c 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6ec 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc returned error Chaincode exp02 is already instantiated -peer1.org1.example.com | [740 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a]HandleMessage- COMPLETED. Notify -orderer.example.com | [50a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org2.example.com | [763 01-05 02:50:58.16 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{0x1a, 0x80, 0x18, 0x1d, 0x93, 0xc3, 0x60, 0x8e, 0xce, 0xbf, 0x47, 0x31, 0xed, 0x4e, 0xf9, 0xa0, 0x87, 0xb9, 0xd2, 0xce, 0x1f, 0xf7, 0x3b, 0xc3, 0xc0, 0x4d, 0x5a, 0xeb, 0x7b, 0x63, 0x3c, 0x18} txOffsets= -peer1.org1.example.com | [741 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a, channelID:businesschannel -peer1.org2.example.com | [80d 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | txId=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 locPointer=offset=70, bytesLength=2917 -peer1.org1.example.com | [742 01-05 02:51:03.35 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 | [6ed 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b802a0 env 0xc4230e02a0 txn 0 -peer1.org1.example.com | [743 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [50b 01-05 02:50:25.62 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 | [6ee 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer1.org2.example.com | [80e 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35d39bdd]Inside sendExecuteMessage. Message TRANSACTION +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 +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 +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 +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 +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 +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 +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 +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 +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 +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... +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 +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 +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 +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 +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 | ] -peer1.org1.example.com | [744 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [50c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer0.org1.example.com | [6ef 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [80f 01-05 02:51:03.61 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 | [745 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a] -peer1.org2.example.com | [810 01-05 02:51:03.61 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 | [764 01-05 02:50:58.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50812, bytesLength=2917] for tx ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to index -orderer.example.com | [50d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org1.example.com | [6f0 01-05 02:50:50.07 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 | [746 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [50e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org1.example.com | [6f1 01-05 02:50:50.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.org2.example.com | [811 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35d39bdd]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [765 01-05 02:50:58.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50812, bytesLength=2917] for tx number:[0] ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to blockNumTranNum index -orderer.example.com | [50f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org1.example.com | [747 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a channel id: businesschannel chaincode id: name:"exp02" -peer1.org2.example.com | [812 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Move state message TRANSACTION -peer0.org1.example.com | [6f2 01-05 02:50:50.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] -peer1.org1.example.com | [748 01-05 02:51:03.35 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 -orderer.example.com | [510 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer1.org2.example.com | [813 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [766 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org1.example.com | [749 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a channel id: businesschannel version: 1.1.0 -orderer.example.com | [511 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer1.org1.example.com | [74a 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a,syscc=true,proposal=0xc4230dbc70,canname=escc:1.1.0 -peer0.org1.example.com | [6f3 01-05 02:50:50.07 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 | [814 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [767 01-05 02:50:58.17 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 | [512 01-05 02:50:25.62 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 | [815 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]sending state message TRANSACTION -peer0.org1.example.com | [6f4 01-05 02:50:50.08 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 [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -orderer.example.com | [513 01-05 02:50:25.62 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 | [74b 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -peer1.org2.example.com | [816 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]Received message TRANSACTION from shim -orderer.example.com | [514 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [6f5 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [74c 01-05 02:51:03.35 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 | [817 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35d39bdd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [768 01-05 02:50:58.17 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 | [74d 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org1.example.com | [74e 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [030731ee]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [515 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [818 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [35d39bdd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [6f6 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [516 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [819 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [35d39bdd]Sending GET_STATE -peer1.org1.example.com | [74f 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [750 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [751 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [030731ee]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [752 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Move state message TRANSACTION -orderer.example.com | [517 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [81a 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message GET_STATE from shim -peer1.org2.example.com | [81b 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [81c 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [35d39bdd]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [81d 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [81e 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [81f 01-05 02:51:03.61 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 | [820 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd]Got state. Sending RESPONSE -peer1.org2.example.com | [821 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [35d39bdd]handleGetState serial send RESPONSE -peer1.org2.example.com | [822 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]Received message RESPONSE from shim -peer1.org2.example.com | [823 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35d39bdd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [753 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [518 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [6f7 01-05 02:50:50.08 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 | [769 01-05 02:50:58.17 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 | [824 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [35d39bdd]before send -peer1.org1.example.com | [754 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6f8 01-05 02:50:50.08 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 | [76a 01-05 02:50:58.17 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 | [519 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [825 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [35d39bdd]after send -peer1.org1.example.com | [755 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]sending state message TRANSACTION -peer0.org1.example.com | [6f9 01-05 02:50:50.08 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 | [76b 01-05 02:50:58.17 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 | [51a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [826 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [35d39bdd]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [757 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Received message TRANSACTION from shim -peer0.org2.example.com | [76c 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [6fa 01-05 02:50:50.08 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{0x4, 0x54, 0x21, 0x67, 0xdf, 0x21, 0x1b, 0x2e, 0xa, 0xd7, 0xd0, 0x9, 0xa7, 0xc, 0xf3, 0x44, 0x38, 0x6f, 0x1f, 0x90, 0x3, 0x52, 0xcd, 0xef, 0x5, 0x8a, 0x93, 0xb8, 0xa, 0xcf, 0x60, 0x61} txOffsets= -peer1.org2.example.com | [827 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [35d39bdd]GetState received payload RESPONSE -peer1.org1.example.com | [756 01-05 02:51:03.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 -peer0.org2.example.com | [76d 01-05 02:50:58.17 UTC] [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 | [51b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | txId=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc locPointer=offset=70, bytesLength=3460 -peer1.org2.example.com | [828 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [758 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [76e 01-05 02:50:58.17 UTC] [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 | [51c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [829 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]Move state message COMPLETED -peer1.org1.example.com | [759 01-05 02:51:03.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}] -peer0.org1.example.com | ] -peer1.org2.example.com | [82a 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35d39bdd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [75a 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [030731ee]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [51d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [76f 01-05 02:50:58.17 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 | [82b 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]send state message COMPLETED -peer1.org1.example.com | [75b 01-05 02:51:03.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}] -peer0.org1.example.com | [6fb 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3460] for tx ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to index -orderer.example.com | [51e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [770 01-05 02:50:58.17 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 | [82c 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message COMPLETED from shim -peer1.org1.example.com | [75c 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [6fc 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3460] for tx number:[0] ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to blockNumTranNum index -peer0.org2.example.com | [771 01-05 02:50:58.17 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 | [82d 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [51f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [75d 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [82e 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [772 01-05 02:50:58.17 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 | [75e 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [6fd 01-05 02:50:50.09 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.org2.example.com | [82f 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403, channelID:businesschannel -peer0.org2.example.com | [773 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [520 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [75f 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]Move state message COMPLETED -peer1.org2.example.com | [830 01-05 02:51:03.61 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 | [6fe 01-05 02:50:50.09 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 | [521 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [831 01-05 02:51:03.61 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 | [774 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 -peer0.org1.example.com | [6ff 01-05 02:50:50.09 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 | [522 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [760 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [030731ee]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [832 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [700 01-05 02:50:50.09 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 | [775 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [523 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [761 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [030731ee]send state message COMPLETED -peer1.org2.example.com | [833 01-05 02:51:03.61 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=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403,syscc=false,proposal=0xc422af5720,canname=exp02:1.0 -peer0.org1.example.com | [701 01-05 02:50:50.09 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 | [524 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [776 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [702 01-05 02:50:50.09 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 | [525 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [762 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [030731ee]Received message COMPLETED from shim -peer1.org2.example.com | [834 01-05 02:51:03.61 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 | [777 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [526 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [703 01-05 02:50:50.09 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 | [778 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [763 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731ee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [527 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [835 01-05 02:51:03.61 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 | [704 01-05 02:50:50.09 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 | [528 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [779 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [836 01-05 02:51:03.61 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 | [705 01-05 02:50:50.09 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 | [529 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [764 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [77a 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [837 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35d39bdd]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [52a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [706 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org1.example.com | [765 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a, channelID:businesschannel -orderer.example.com | [52b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [77b 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [707 01-05 02:50:50.09 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 | [838 01-05 02:51:03.61 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 | [52c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [77c 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [766 01-05 02:51:03.35 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 | [708 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org2.example.com | [839 01-05 02:51:03.61 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 | [52d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [77d 01-05 02:50:58.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [709 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [767 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [52e 01-05 02:50:25.62 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 | [83a 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35d39bdd]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [70a 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc -orderer.example.com | [52f 01-05 02:50:25.62 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.org2.example.com | [77e 01-05 02:51:03.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:46826 -peer1.org1.example.com | [768 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [83b 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Move state message TRANSACTION -orderer.example.com | [530 01-05 02:50:25.62 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 | [77f 01-05 02:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423a08870 -peer1.org1.example.com | [769 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [030731eeb0937deee9858110531f4d9eda55f9a0d786c46e0bca02c5d964d16a] -orderer.example.com | [531 01-05 02:50:25.62 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 | [70b 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [780 01-05 02:51:03.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 -orderer.example.com | [532 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [83c 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [70c 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [76a 01-05 02:51:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:36490) -orderer.example.com | [533 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [781 01-05 02:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [534 01-05 02:50:25.62 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 | [83d 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [76b 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [70d 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [535 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [782 01-05 02:51:03.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} -peer1.org2.example.com | [83e 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]sending state message TRANSACTION -peer1.org1.example.com | [76c 01-05 02:51:03.36 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 | [536 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [783 01-05 02:51:03.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 | [70e 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [83f 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message GET_STATE from shim -peer1.org1.example.com | [76d 01-05 02:51:03.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 [5] with [1] transactions -orderer.example.com | [537 01-05 02:50:25.62 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 | [70f 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [840 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [784 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [538 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [76e 01-05 02:51:03.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 [5] -peer0.org1.example.com | [710 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [539 01-05 02:50:25.62 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 | [841 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [35d39bdd]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [76f 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [785 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4239abea0, header 0xc423a088a0 -peer0.org1.example.com | [711 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [842 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [770 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 -peer0.org2.example.com | [786 01-05 02:51:03.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:"exp02" -orderer.example.com | [53a 01-05 02:50:25.62 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 | [712 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [843 01-05 02:51:03.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd] getting state for chaincode exp02, key a, channel businesschannel -peer1.org1.example.com | [771 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [787 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac -orderer.example.com | [53b 01-05 02:50:25.62 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 | [713 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [844 01-05 02:51:03.61 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 | [772 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [788 01-05 02:51:03.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 = [747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac] -orderer.example.com | [53c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org2.example.com | [845 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd]Got state. Sending RESPONSE -peer1.org1.example.com | [773 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [714 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54540 -peer0.org2.example.com | [789 01-05 02:51:03.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 -peer0.org2.example.com | [78a 01-05 02:51:03.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 = [747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac] -peer0.org2.example.com | [78b 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac channel id: businesschannel -orderer.example.com | [53d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [78c 01-05 02:51:03.90 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=747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac,syscc=true,proposal=0xc4239abea0,canname=lscc:1.1.0 -peer1.org2.example.com | [846 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [35d39bdd]handleGetState serial send RESPONSE -peer1.org1.example.com | [774 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [78d 01-05 02:51:03.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 -peer0.org1.example.com | [36m[715 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228f7c20 -orderer.example.com | [53e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [78e 01-05 02:51:03.90 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 | [847 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message GET_STATE from shim -peer1.org1.example.com | [775 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [716 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [78f 01-05 02:51:03.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 -orderer.example.com | [53f 01-05 02:50:25.62 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 | [717 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [848 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [776 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [790 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [747343df]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [540 01-05 02:50:25.62 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 | [718 01-05 02:50:56.08 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 | [791 01-05 02:51:03.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... -peer1.org1.example.com | [777 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [849 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [35d39bdd]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [719 01-05 02:50:56.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 | [541 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [792 01-05 02:51:03.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.org2.example.com | [793 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [747343df]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [71a 01-05 02:50:56.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 | [778 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [84a 01-05 02:51:03.62 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 | [542 01-05 02:50:25.62 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 | [794 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Move state message TRANSACTION -peer0.org1.example.com | [71b 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4229146e0, header 0xc4228f7c50 -peer1.org2.example.com | [84b 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd] getting state for chaincode exp02, key b, channel businesschannel -peer0.org2.example.com | [795 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [779 01-05 02:51:03.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [543 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [796 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [71c 01-05 02:50:56.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:"exp02" -peer1.org2.example.com | [84c 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org2.example.com | [797 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]sending state message TRANSACTION -peer1.org1.example.com | [77a 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [544 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [798 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]Received message TRANSACTION from shim -peer0.org1.example.com | [71d 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 -peer0.org2.example.com | [799 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [747343df]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [84d 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd]Got state. Sending RESPONSE -peer1.org1.example.com | [77b 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [545 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer0.org2.example.com | [79a 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [747343df]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [84e 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [35d39bdd]handleGetState serial send RESPONSE -peer1.org1.example.com | [77c 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422418880 env 0xc423063a10 txn 0 -peer0.org2.example.com | [79b 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [747343df]Sending GET_STATE -peer0.org1.example.com | [71e 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -orderer.example.com | [546 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [79c 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Received message GET_STATE from shim -peer1.org2.example.com | [84f 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message PUT_STATE from shim -peer1.org1.example.com | [77d 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423063a10 -peer0.org1.example.com | [71f 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [547 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [79d 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [850 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [77e 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -peer0.org2.example.com | [79e 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [747343df]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [720 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -orderer.example.com | [548 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer1.org1.example.com | [77f 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [79f 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [721 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel -peer1.org2.example.com | [852 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd]state is ready -orderer.example.com | [549 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -peer1.org2.example.com | [853 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [780 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [722 01-05 02:50:56.08 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=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070,syscc=true,proposal=0xc4229146e0,canname=lscc:1.1.0 -orderer.example.com | [54a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [854 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [35d39bdd]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [7a0 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [747343df] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [723 01-05 02:50:56.08 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 | [781 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -orderer.example.com | [54b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [7a1 01-05 02:51:03.90 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 | [724 01-05 02:50:56.09 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 | [782 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [54c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [7a2 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [747343df]Got state. Sending RESPONSE -peer1.org2.example.com | [851 01-05 02:51:03.62 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 | [725 01-05 02:50:56.09 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 | [54d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [783 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [7a3 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [747343df]handleGetState serial send RESPONSE -peer1.org2.example.com | [855 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Move state message RESPONSE -peer0.org1.example.com | [726 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [54e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [784 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422d34000, header channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -peer1.org2.example.com | [856 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | [54f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F16989A505B543F5FC08BC321769285B -peer0.org2.example.com | [7a4 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]Received message RESPONSE from shim -peer0.org1.example.com | [727 01-05 02:50:56.09 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 | [785 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [857 01-05 02:51:03.62 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 | [550 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 5FC873A2290B07172C1CC890E6CDED4BBC2AADD52C107823A9C6B81B820466D5 -peer0.org1.example.com | [728 01-05 02:50:56.09 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 | [7a5 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [747343df]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [858 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]sending state message RESPONSE -peer1.org1.example.com | [786 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [551 01-05 02:50:25.62 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.org1.example.com | [729 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [859 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message PUT_STATE from shim -peer0.org2.example.com | [7a6 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [747343df]before send -peer0.org1.example.com | [72a 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message TRANSACTION -peer1.org1.example.com | [787 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [552 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [72b 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [85a 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [7a7 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [747343df]after send -peer1.org1.example.com | [788 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [72c 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [553 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [85b 01-05 02:51:03.62 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 | [789 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org2.example.com | [7a8 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [747343df]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [72d 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message TRANSACTION -orderer.example.com | [554 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -peer0.org2.example.com | [7a9 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [747343df]GetState received payload RESPONSE -peer1.org1.example.com | [78a 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [72e 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Received message TRANSACTION from shim -peer1.org2.example.com | [85c 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd]state is ready -orderer.example.com | [555 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [7aa 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [78b 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423063a10 envbytes 0xc421b3ac00 -peer1.org2.example.com | [85d 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [35d39bdd]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [72f 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [556 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [7ab 01-05 02:51:03.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]Move state message COMPLETED -peer1.org2.example.com | [85e 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [35d39bdd]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [78c 01-05 02:51:05.67 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 = [33a5f65b-114e-44b7-b574-a7dddd79250d] -peer0.org1.example.com | [730 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [48b4afc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [557 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...F16989A505B543F5FC08BC321769285B -peer0.org2.example.com | [7ac 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [747343df]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [85f 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Move state message RESPONSE -orderer.example.com | [558 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 12C97D01012CD5C02FB772CB816DFB1B3DAFC73C9A5B42CE31DFF9D6C03D3D92 -peer1.org2.example.com | [860 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [731 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [48b4afc7]Sending GET_STATE -peer1.org1.example.com | [78d 01-05 02:51:05.67 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 | [7ad 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]send state message COMPLETED -orderer.example.com | [559 01-05 02:50:25.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6e, 0x36, 0x5e, 0xcb, 0x4a, 0x54, 0xb9, 0x4f, 0xf6, 0xc, 0xda, 0xc9, 0x43, 0xd5, 0x11, 0x89, 0xbd, 0x9d, 0x34, 0x76, 0x3d, 0x5b, 0x15, 0x8b, 0xdc, 0xb4, 0xab, 0x31, 0x57, 0x48, 0xae, 0x94} txOffsets= -peer1.org2.example.com | [861 01-05 02:51:03.62 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 | [78e 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [33a5f65b-114e-44b7-b574-a7dddd79250d] -peer0.org1.example.com | [732 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message GET_STATE from shim -orderer.example.com | txId= locPointer=offset=70, bytesLength=12093 -peer0.org2.example.com | [7ae 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Received message COMPLETED from shim -peer1.org1.example.com | [78f 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421b3ac00 -peer0.org1.example.com | [733 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [862 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]sending state message RESPONSE -orderer.example.com | ] -peer1.org1.example.com | [790 01-05 02:51:05.67 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 | [7af 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [863 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message COMPLETED from shim -orderer.example.com | [55a 01-05 02:50:25.69 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] -peer1.org1.example.com | [791 01-05 02:51:05.67 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 = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer1.org1.example.com | [792 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=de32637f-2bf0-4a66-b393-9a1ab0a724e7,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org2.example.com | [7b0 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac]HandleMessage- COMPLETED. Notify -orderer.example.com | [55b 01-05 02:50:25.69 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -peer1.org2.example.com | [864 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [734 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [48b4afc7]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [793 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 chaindID businesschannel -peer0.org2.example.com | [7b1 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac, channelID:businesschannel -orderer.example.com | [55c 01-05 02:50:27.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer1.org2.example.com | [865 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [735 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7b2 01-05 02:51:03.91 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 | [794 01-05 02:51:05.67 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 | [866 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403, channelID:businesschannel -orderer.example.com | [55d 01-05 02:50:27.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47170 -peer0.org2.example.com | [7b3 01-05 02:51:03.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 -peer1.org2.example.com | [867 01-05 02:51:03.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 | [795 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [55e 01-05 02:50:27.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47170 -peer0.org1.example.com | [736 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org2.example.com | [7b4 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac channel id: businesschannel version: 1.0 -peer1.org2.example.com | [868 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [737 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [55f 01-05 02:50:27.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org2.example.com | [7b5 01-05 02:51:03.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=747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac,syscc=false,proposal=0xc4239abea0,canname=exp02:1.0 -peer1.org1.example.com | [796 01-05 02:51:05.67 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 | [869 01-05 02:51:03.62 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 | [797 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de32637f]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [560 01-05 02:50:27.72 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:47172 -peer0.org1.example.com | [738 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Got state. Sending RESPONSE -peer0.org1.example.com | [739 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]handleGetState serial send RESPONSE -peer0.org1.example.com | [73a 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Received message RESPONSE from shim -peer0.org1.example.com | [73b 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [73c 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [48b4afc7]before send -peer0.org1.example.com | [73d 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [48b4afc7]after send -peer0.org1.example.com | [73e 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [48b4afc7]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [73f 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [48b4afc7]GetState received payload RESPONSE -peer0.org1.example.com | [740 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [86a 01-05 02:51:03.62 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 [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer1.org1.example.com | [798 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [561 01-05 02:50:27.72 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:47172 -peer1.org2.example.com | [86b 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [799 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [de32637f]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [7b6 01-05 02:51:03.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 | [741 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Move state message COMPLETED -orderer.example.com | [562 01-05 02:50:27.72 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 | [86c 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 channel id: businesschannel chaincode id: name:"exp02" -peer1.org1.example.com | [79a 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de32637f]Move state message TRANSACTION -peer0.org2.example.com | [7b7 01-05 02:51:03.91 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 | [742 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [563 01-05 02:50: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 | [564 01-05 02:50: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 | [565 01-05 02:50: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 | [566 01-05 02:50: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 | [567 01-05 02:50: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 | [568 01-05 02:50: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 -peer1.org1.example.com | [79b 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de32637f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [86d 01-05 02:51:03.62 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 | [743 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]send state message COMPLETED -peer0.org2.example.com | [7b8 01-05 02:51:03.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 | [569 01-05 02:50: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----- -peer1.org1.example.com | [79c 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7b9 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [747343df]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [744 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message COMPLETED from shim -peer1.org1.example.com | [79d 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de32637f]sending state message TRANSACTION -peer1.org2.example.com | [86e 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 channel id: businesschannel version: 1.1.0 -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [7ba 01-05 02:51:03.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... -peer1.org1.example.com | [79e 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de32637f]Received message TRANSACTION from shim -peer1.org1.example.com | [79f 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de32637f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [86f 01-05 02:51:03.62 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=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403,syscc=true,proposal=0xc422af5720,canname=escc:1.1.0 -peer1.org1.example.com | [7a0 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [de32637f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [870 01-05 02:51:03.62 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 | [7a1 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [7bb 01-05 02:51:03.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... -peer0.org1.example.com | [745 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [871 01-05 02:51:03.62 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 | [7a2 01-05 02:51:05.67 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 | [7bc 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [747343df]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [746 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070]HandleMessage- COMPLETED. Notify -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org2.example.com | [872 01-05 02:51:03.62 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 | [7a3 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [7bd 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Move state message TRANSACTION -peer0.org1.example.com | [747 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070, channelID:businesschannel -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [873 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35d39bdd]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [7a4 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de32637f]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [7be 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [748 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [7a5 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de32637f]Move state message COMPLETED -peer1.org2.example.com | [874 01-05 02:51:03.62 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 | [7bf 01-05 02:51:03.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 -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [749 01-05 02:50:56.09 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 | [7a6 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de32637f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [875 01-05 02:51:03.62 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 | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org2.example.com | [7c0 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]sending state message TRANSACTION -peer0.org1.example.com | [74a 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel version: 1.0 -peer1.org1.example.com | [7a7 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de32637f]send state message COMPLETED -peer1.org2.example.com | [876 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35d39bdd]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [7c1 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Received message GET_STATE from shim -peer0.org1.example.com | [74b 01-05 02:50:56.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=exp02,version=1.0,txid=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070,syscc=false,proposal=0xc4229146e0,canname=exp02:1.0 -peer1.org1.example.com | [7a8 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de32637f]Received message COMPLETED from shim -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer1.org2.example.com | [877 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Move state message TRANSACTION -peer0.org1.example.com | [74c 01-05 02:50:56.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) : exp02:1.0 -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -orderer.example.com | R0L5Jr8878bLU6IcEA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [56a 01-05 02:50: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 0xc42000f028 gate 1515120627725304100 evaluation starts -orderer.example.com | [56b 01-05 02:50: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 0xc42000f028 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [7a9 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de32637f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [878 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [7c2 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [7c3 01-05 02:51:03.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 [747343df]Received GET_STATE, invoking get state from ledger -orderer.example.com | [56c 01-05 02:50: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 0xc42000f028 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [7aa 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [de32637f-2bf0-4a66-b393-9a1ab0a724e7]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [879 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [74d 01-05 02:50:56.09 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 | [7c5 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [747343df] getting state for chaincode exp02, key a, channel businesschannel -orderer.example.com | [56d 01-05 02:50: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 0xc42000f028 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -peer1.org2.example.com | [87a 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]sending state message TRANSACTION -peer1.org1.example.com | [7ab 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:de32637f-2bf0-4a66-b393-9a1ab0a724e7, channelID:businesschannel -peer0.org1.example.com | [74e 01-05 02:50:56.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: exp02:1.0 -orderer.example.com | [56e 01-05 02:50: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 0xc42000f028 principal evaluation fails -peer0.org2.example.com | [7c6 01-05 02:51:03.91 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 | [87b 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]Received message TRANSACTION from shim -peer1.org1.example.com | [7ac 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [56f 01-05 02:50: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 0xc42000f028 gate 1515120627725304100 evaluation fails -peer1.org2.example.com | [87c 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35d39bdd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [7c7 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [747343df]Got state. Sending RESPONSE -peer0.org1.example.com | [74f 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [7ad 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -orderer.example.com | [570 01-05 02:50: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/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [7c8 01-05 02:51:03.91 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [747343df]handleGetState serial send RESPONSE -peer1.org2.example.com | [87d 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [35d39bdd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [750 01-05 02:50:56.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 | [7ae 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421b3ac00 -peer0.org2.example.com | [7c4 01-05 02:51:03.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 | [751 01-05 02:50:56.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 | [87e 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [571 01-05 02:50: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/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [752 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [7af 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423063a10 envbytes 0xc421b3ac00 -peer0.org2.example.com | [7c9 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Received message COMPLETED from shim -peer1.org2.example.com | [87f 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [753 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message TRANSACTION -orderer.example.com | [572 01-05 02:50: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 [ OrdererOrg.Writers ] -peer1.org1.example.com | [7b0 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422418880 env 0xc423063a10 txn 0 -peer0.org2.example.com | [7ca 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [754 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [880 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [7b1 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [755 01-05 02:50:56.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 | [7cb 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac]HandleMessage- COMPLETED. Notify -orderer.example.com | [573 01-05 02:50: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/Orderer/Writers -peer0.org1.example.com | [756 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message TRANSACTION -peer1.org2.example.com | [881 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]Move state message COMPLETED -orderer.example.com | [574 01-05 02:50: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/Orderer/Writers -peer1.org1.example.com | [7b2 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [757 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message GET_STATE from shim -peer0.org2.example.com | [7cc 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac, channelID:businesschannel -orderer.example.com | [575 01-05 02:50: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 == -peer1.org2.example.com | [882 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35d39bdd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [758 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [7b3 01-05 02:51:05.68 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 | [7cd 01-05 02:51:03.92 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 | [759 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [48b4afc7]Received GET_STATE, invoking get state from ledger -orderer.example.com | [576 01-05 02:50: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 -peer1.org2.example.com | [883 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35d39bdd]send state message COMPLETED -peer1.org1.example.com | [7b4 01-05 02:51:05.68 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 | [75a 01-05 02:50:56.10 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 | [7ce 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [577 01-05 02:50: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 == -peer0.org1.example.com | [75b 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7] getting state for chaincode exp02, key a, channel businesschannel -peer1.org1.example.com | [7b5 01-05 02:51:05.68 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 | [884 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35d39bdd]Received message COMPLETED from shim -peer0.org1.example.com | [75c 01-05 02:50:56.10 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 | [7cf 01-05 02:51:03.92 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 | [578 01-05 02:50: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 0xc42000f038 gate 1515120627727943400 evaluation starts -peer0.org1.example.com | [75d 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Got state. Sending RESPONSE -peer1.org2.example.com | [885 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [7d0 01-05 02:51:03.92 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 [747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac] -peer1.org1.example.com | [7b6 01-05 02:51:05.68 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 | [7d1 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [579 01-05 02:50: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 0xc42000f038 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [886 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [75e 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]handleGetState serial send RESPONSE -peer1.org1.example.com | [7b7 01-05 02:51:05.68 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 | [7d2 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac channel id: businesschannel chaincode id: name:"exp02" -orderer.example.com | [57a 01-05 02:50: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 0xc42000f038 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [75f 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message GET_STATE from shim -peer1.org2.example.com | [887 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403, channelID:businesschannel -peer0.org2.example.com | [7d3 01-05 02:51:03.92 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 | [7b8 01-05 02:51:05.68 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 | [760 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [57b 01-05 02:50: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 0xc42000f038 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -peer1.org2.example.com | [888 01-05 02:51:03.62 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 | [761 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [48b4afc7]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [7d4 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [7b9 01-05 02:51:05.68 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 | [762 01-05 02:50:56.10 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 | [7ba 01-05 02:51:05.68 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 | [57c 01-05 02:50: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 0xc42000f038 principal evaluation fails -peer1.org2.example.com | [889 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [7d5 01-05 02:51:03.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=747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac,syscc=true,proposal=0xc4239abea0,canname=escc:1.1.0 -peer0.org1.example.com | [763 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7] getting state for chaincode exp02, key b, channel businesschannel -peer1.org1.example.com | [7bb 01-05 02:51:05.68 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 | [57d 01-05 02:50: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 0xc42000f038 gate 1515120627727943400 evaluation fails -peer1.org2.example.com | [88a 01-05 02:51:03.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [7d6 01-05 02:51:03.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 | [764 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org1.example.com | [7bc 01-05 02:51:05.68 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 | [57e 01-05 02:50: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 -peer0.org2.example.com | [7d7 01-05 02:51:03.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 | [765 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Got state. Sending RESPONSE -peer1.org2.example.com | [88b 01-05 02:51:03.62 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 [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -orderer.example.com | [57f 01-05 02:50: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 -peer1.org1.example.com | [7bd 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org2.example.com | [7d8 01-05 02:51:03.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 | [766 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]handleGetState serial send RESPONSE -peer1.org2.example.com | [88c 01-05 02:51:03.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:41154) -orderer.example.com | [580 01-05 02:50: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 == -peer0.org2.example.com | [7d9 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [747343df]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [767 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message PUT_STATE from shim -peer1.org2.example.com | [88d 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -orderer.example.com | [581 01-05 02:50: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 0xc42000f040 gate 1515120627729889900 evaluation starts -peer0.org1.example.com | [768 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [7da 01-05 02:51:03.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... -peer1.org1.example.com | [7be 01-05 02:51:05.68 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 [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] marked as valid by state validator -orderer.example.com | [582 01-05 02:50: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 0xc42000f040 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [88e 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -peer1.org1.example.com | [7bf 01-05 02:51:05.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 | [769 01-05 02:50:56.10 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 | [7db 01-05 02:51:03.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... -peer1.org2.example.com | [88f 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [76a 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]state is ready -orderer.example.com | [583 01-05 02:50: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 0xc42000f040 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [7dc 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [747343df]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [7dd 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Move state message TRANSACTION -peer0.org2.example.com | [7de 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [7c0 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [584 01-05 02:50: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 Org2MSP -peer1.org2.example.com | [890 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [76b 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [7df 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [7c1 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [585 01-05 02:50: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 Org2MSP validating identity -peer0.org1.example.com | [76c 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]enterBusyState trigger event RESPONSE -orderer.example.com | [586 01-05 02:50: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 0xc42000f040 principal matched by identity 0 -peer1.org2.example.com | [891 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42367b8e0 env 0xc4235fd7a0 txn 0 -orderer.example.com | [587 01-05 02:50: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 3e eb ec 55 de 98 6b 08 6a 6b bc 2a 14 bd bd 30 |>..U..k.jk.*...0| -peer0.org1.example.com | [76d 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message RESPONSE -peer0.org2.example.com | [7e0 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]sending state message TRANSACTION -orderer.example.com | 00000010 00 b8 0a 72 9c ba a7 a4 fc 7d 33 ee 17 1b 85 b6 |...r.....}3.....| -peer1.org1.example.com | [7c2 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer0.org2.example.com | [7e1 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]Received message TRANSACTION from shim -peer0.org2.example.com | [7e2 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [747343df]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [7e3 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [747343df]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [588 01-05 02:50: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: sig = 00000000 30 44 02 20 7b 30 1e cc 76 e0 97 86 0a 90 29 b4 |0D. {0..v.....).| -peer1.org1.example.com | [7c3 01-05 02:51:05.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 [6] -peer1.org2.example.com | [892 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4235fd7a0 -peer0.org1.example.com | [76e 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | 00000010 a7 45 1d aa 68 88 19 d0 2e 7b a2 56 9c 24 e9 f4 |.E..h....{.V.$..| -peer0.org2.example.com | [7e4 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [7c4 01-05 02:51:05.68 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{0x97, 0xdc, 0xe2, 0x89, 0x84, 0x47, 0xe2, 0x45, 0x40, 0xea, 0x20, 0xe4, 0xf, 0x22, 0x6b, 0x86, 0x1e, 0x9c, 0x6d, 0x3a, 0xe1, 0x5e, 0x59, 0xbd, 0xd4, 0x2c, 0x25, 0x5b, 0x47, 0x73, 0xa2, 0xfc} txOffsets= -orderer.example.com | 00000020 d2 fb a2 33 02 20 1f 5a cb f2 d0 27 32 8e 2f 16 |...3. .Z...'2./.| -peer1.org1.example.com | txId=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 locPointer=offset=70, bytesLength=2921 -peer1.org2.example.com | [893 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -peer0.org1.example.com | [76f 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7e5 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 00000030 83 7c b1 f0 16 cc d3 17 1b fc ba fb ae 42 58 77 |.|...........BXw| -peer1.org1.example.com | ] -peer1.org2.example.com | [894 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 00000040 75 ea da fe 25 bc |u...%.| -peer0.org2.example.com | [7e6 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [7e7 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]Move state message COMPLETED -peer0.org2.example.com | [7e8 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [747343df]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [7c5 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to index -peer1.org2.example.com | [895 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [589 01-05 02:50: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 0xc42000f040 principal evaluation succeeds for identity 0 -orderer.example.com | [58a 01-05 02:50: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 0xc42000f040 gate 1515120627729889900 evaluation succeeds -peer0.org2.example.com | [7e9 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [747343df]send state message COMPLETED -peer1.org1.example.com | [7c6 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx number:[0] ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to blockNumTranNum index -peer1.org2.example.com | [896 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org1.example.com | [770 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message RESPONSE -peer0.org1.example.com | [771 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message PUT_STATE from shim -orderer.example.com | [58b 01-05 02:50: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/Application/Org2MSP/Writers -peer1.org1.example.com | [7c7 01-05 02:51:05.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=[60310], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org2.example.com | [897 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [7ea 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [747343df]Received message COMPLETED from shim -peer0.org1.example.com | [772 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | [58c 01-05 02:50: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/Application/Org2MSP/Writers -peer1.org1.example.com | [7c8 01-05 02:51:05.69 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 | [898 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [773 01-05 02:50:56.10 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 | [7eb 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [58d 01-05 02:50: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/Application/Writers -peer1.org1.example.com | [7c9 01-05 02:51:05.69 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 | [899 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42367d000, header channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -orderer.example.com | [58e 01-05 02:50: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/Application/Writers -peer1.org1.example.com | [7ca 01-05 02:51:05.69 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 | [7ec 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [89a 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | [58f 01-05 02:50: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 -peer0.org1.example.com | [774 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]state is ready -peer1.org1.example.com | [7cb 01-05 02:51:05.69 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 | [89b 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [7ed 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac, channelID:businesschannel -peer1.org1.example.com | [7cc 01-05 02:51:05.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 | [775 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | [590 01-05 02:50: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 -peer1.org2.example.com | [89c 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [7ee 01-05 02:51:03.92 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 | [7cd 01-05 02:51:05.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 -peer0.org1.example.com | [776 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]enterBusyState trigger event RESPONSE -orderer.example.com | [591 01-05 02:50:27.73 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 | [89d 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [7ce 01-05 02:51:05.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}] -orderer.example.com | [592 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 | [89e 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer1.org1.example.com | [7cf 01-05 02:51:05.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.org2.example.com | [7ef 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [777 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message RESPONSE -peer1.org2.example.com | [89f 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [593 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 | [7d0 01-05 02:51:05.70 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 | [7f0 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [8a0 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4235fd7a0 envbytes 0xc423694c00 -peer0.org1.example.com | [778 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [7d1 01-05 02:51:05.70 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 | [594 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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.org2.example.com | [8a1 01-05 02:51:05.65 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 = [63d0f110-5c8c-4e4e-8ebb-7a1f43316b0b] -peer0.org2.example.com | [7f1 01-05 02:51:03.92 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 [747343df62d18cbf4ff19e71d44f75029ae30377fedfa442fa8d9d7758fc26ac] -peer0.org1.example.com | [779 01-05 02:50:56.10 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 | [7d2 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org2.example.com | [8a2 01-05 02:51:05.65 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 | [595 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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.org1.example.com | [7d3 01-05 02:51:05.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 [6] -peer1.org2.example.com | [8a3 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [63d0f110-5c8c-4e4e-8ebb-7a1f43316b0b] -peer0.org1.example.com | [77a 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message RESPONSE -peer1.org1.example.com | [7d4 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [8a4 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423694c00 -peer0.org2.example.com | [7f2 01-05 02:51:03.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:46826) -peer1.org1.example.com | [7d5 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 -orderer.example.com | [596 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 02:51:05.65 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 | [77b 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message COMPLETED from shim -peer1.org2.example.com | [8a6 01-05 02:51:05.65 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 = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org2.example.com | [7f3 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [7d6 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [597 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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.org2.example.com | [8a7 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=4a7aaa84-73d5-458e-bacf-89035a51a1a7,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [77c 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [598 01-05 02:50:27.73 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 | [7d7 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [8a8 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 chaindID businesschannel -peer0.org1.example.com | [77d 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070]HandleMessage- COMPLETED. Notify -orderer.example.com | [599 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 | [7d8 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [7f4 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [8a9 01-05 02:51:05.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 -peer0.org1.example.com | [77e 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070, channelID:businesschannel -peer1.org1.example.com | [7d9 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [59a 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 | [7f5 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423e76d00 env 0xc423e6cc30 txn 0 -peer0.org1.example.com | [77f 01-05 02:50:56.10 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 | [8aa 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [59b 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [59c 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [59d 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [59e 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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.org1.example.com | [7da 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [7db 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [7dc 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [7dd 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [7de 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [7df 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [7e0 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [7e1 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4235f5d20 env 0xc4235e8f90 txn 0 -orderer.example.com | [59f 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 | [8ab 01-05 02:51:05.66 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 | [8ac 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4a7aaa84]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [8ad 01-05 02:51:05.66 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 | [7e2 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4235e8f90 -peer1.org1.example.com | [7e3 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -peer0.org1.example.com | [780 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [7f6 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423e6cc30 -peer1.org2.example.com | [8ae 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4a7aaa84]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [5a0 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [5a1 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -orderer.example.com | [5a2 01-05 02:50:27.73 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 | [5a3 01-05 02:50:27.73 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 | [5a4 01-05 02:50:27.73 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 | [7f7 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -peer0.org2.example.com | [7f8 01-05 02:51:05.70 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 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [5a5 01-05 02:50:27.73 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 | [5a6 01-05 02:50:27.73 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 | [5a7 01-05 02:50:27.73 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 | [5a8 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -orderer.example.com | [5a9 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [5aa 01-05 02:50:27.73 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.org1.example.com | [7e4 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [8af 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7aaa84]Move state message TRANSACTION -peer0.org2.example.com | [7fa 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -peer0.org2.example.com | [7fb 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | [5ab 01-05 02:50:27.73 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 | [7e5 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [5ac 01-05 02:50:27.73 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 | [781 01-05 02:50:56.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 | [7e6 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org2.example.com | [8b0 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7aaa84]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [7fc 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [782 01-05 02:50:56.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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -orderer.example.com | [5ad 01-05 02:50:27.73 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 0xc420138458 gate 1515120627735969000 evaluation starts -peer1.org1.example.com | [7e7 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [8b1 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [7fd 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423edd800, header channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -peer0.org1.example.com | [783 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [7e8 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [8b2 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7aaa84]sending state message TRANSACTION -peer1.org1.example.com | [7e9 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422f10a80, header channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -orderer.example.com | [5ae 01-05 02:50:27.73 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 0xc420138458 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [784 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel chaincode id: name:"exp02" -peer0.org2.example.com | [7fe 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [8b3 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7aaa84]Received message TRANSACTION from shim -orderer.example.com | [5af 01-05 02:50:27.73 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 0xc420138458 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [7ff 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [7ea 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [8b4 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4a7aaa84]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [785 01-05 02:50:56.11 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 | [800 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | [5b0 01-05 02:50:27.73 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.org1.example.com | [7eb 01-05 02:51:14.90 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 | [8b5 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4a7aaa84]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [786 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [801 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [7ec 01-05 02:51:14.90 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 | [5b1 01-05 02:50:27.73 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 0xc420138458 principal matched by identity 0 -peer0.org2.example.com | [802 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org1.example.com | [787 01-05 02:50:56.11 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=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070,syscc=true,proposal=0xc4229146e0,canname=escc:1.1.0 -peer1.org2.example.com | [8b6 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [803 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [7ed 01-05 02:51:14.90 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 | [5b2 01-05 02:50:27.73 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 78 3a e9 bc 4d 6f 93 e6 10 ac 7e 71 bb da 9f 43 |x:..Mo....~q...C| -peer0.org1.example.com | [788 01-05 02:50:56.11 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 | [804 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc423e6cc30 envbytes 0xc423ef6400 -peer1.org2.example.com | [8b7 01-05 02:51:05.66 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 | [805 01-05 02:51:05.70 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 = [aee07a6d-86f6-4ddb-83eb-1e4f4e5f43e9] -peer1.org1.example.com | [7ee 01-05 02:51:14.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 -peer0.org1.example.com | [789 01-05 02:50:56.11 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 | [806 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [8b8 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | 00000010 aa b7 dc ac ad c6 38 71 b0 ac 15 8d 4d e5 4c 74 |......8q....M.Lt| -peer0.org2.example.com | [807 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [aee07a6d-86f6-4ddb-83eb-1e4f4e5f43e9] -peer1.org1.example.com | [7ef 01-05 02:51:14.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 | [808 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc423ef6400 -peer0.org1.example.com | [78a 01-05 02:50:56.11 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 | [5b3 01-05 02:50:27.73 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 7c 08 a7 68 2e c3 d6 b6 48 67 a7 69 |0D. |..h....Hg.i| -peer1.org2.example.com | [8b9 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7aaa84]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [809 01-05 02:51:05.70 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 | [78b 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [7f0 01-05 02:51:14.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 | [80a 01-05 02:51:05.70 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 = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -orderer.example.com | 00000010 82 56 c7 82 d1 d5 b7 b7 44 b8 40 63 b4 27 e2 b4 |.V......D.@c.'..| -peer1.org2.example.com | [8ba 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7aaa84]Move state message COMPLETED -peer0.org2.example.com | [80b 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=d9212907-0091-4e4a-8564-c2a2b99bd1dd,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [78c 01-05 02:50:56.11 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 | [7f1 01-05 02:51:14.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 -peer0.org2.example.com | [80c 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 chaindID businesschannel -orderer.example.com | 00000020 48 ca 0d 65 02 20 13 49 28 fa 91 26 bd 95 c0 08 |H..e. .I(..&....| -peer1.org2.example.com | [8bb 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4a7aaa84]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [78d 01-05 02:50:56.11 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 | [7f2 01-05 02:51:14.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 -peer0.org2.example.com | [80d 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -orderer.example.com | 00000030 98 cd 96 39 52 97 c2 d2 eb f5 35 fb de f3 03 39 |...9R.....5....9| -peer0.org1.example.com | [78e 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [8bc 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4a7aaa84]send state message COMPLETED -peer0.org2.example.com | [80e 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [7f3 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | 00000040 fd a8 ae e1 34 3b |....4;| -peer1.org2.example.com | [8bd 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4a7aaa84]Received message COMPLETED from shim -peer0.org2.example.com | [80f 01-05 02:51:05.70 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 | [810 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d9212907]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [78f 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message TRANSACTION -peer0.org2.example.com | [811 01-05 02:51:05.70 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 | [7f4 01-05 02:51:14.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 | [8be 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7aaa84]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [812 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d9212907]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [790 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [813 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d9212907]Move state message TRANSACTION -peer1.org1.example.com | [7f5 01-05 02:51:14.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 -orderer.example.com | [5b4 01-05 02:50:27.73 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 0xc420138458 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [814 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d9212907]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [8bf 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [4a7aaa84-73d5-458e-bacf-89035a51a1a7]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [791 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [815 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [7f6 01-05 02:51:14.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 -orderer.example.com | [5b5 01-05 02:50:27.73 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 0xc420138458 gate 1515120627735969000 evaluation succeeds -peer0.org2.example.com | [816 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d9212907]sending state message TRANSACTION -peer1.org2.example.com | [8c0 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:4a7aaa84-73d5-458e-bacf-89035a51a1a7, channelID:businesschannel -peer0.org2.example.com | [817 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9212907]Received message TRANSACTION from shim -peer0.org1.example.com | [792 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message TRANSACTION -peer1.org1.example.com | [7f7 01-05 02:51:14.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 | [5b6 01-05 02:50:27.73 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 | [818 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d9212907]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [8c1 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [7f8 01-05 02:51:14.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 -peer0.org2.example.com | [819 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d9212907]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [5b7 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [793 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Received message TRANSACTION from shim -peer1.org1.example.com | [7f9 01-05 02:51:14.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 -peer0.org2.example.com | [81a 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [8c2 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org1.example.com | [794 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [5b8 01-05 02:50:27.73 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 -peer1.org1.example.com | [7fa 01-05 02:51:14.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 -peer0.org2.example.com | [81b 01-05 02:51:05.71 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 | [795 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [48b4afc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [8c3 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423694c00 -peer1.org1.example.com | [7fb 01-05 02:51:14.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 | [5b9 01-05 02:50:27.73 UTC] [github.com/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 | [796 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [8c4 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4235fd7a0 envbytes 0xc423694c00 -peer0.org2.example.com | [81c 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [7fc 01-05 02:51:14.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 -peer0.org1.example.com | [797 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [5ba 01-05 02:50:27.73 UTC] [github.com/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 | [8c5 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42367b8e0 env 0xc4235fd7a0 txn 0 -peer0.org1.example.com | [798 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [7fd 01-05 02:51:14.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 -peer0.org2.example.com | [81d 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9212907]Transaction completed. Sending COMPLETED -orderer.example.com | [5bb 01-05 02:50:27.73 UTC] [github.com/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 | [8c6 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [7fe 01-05 02:51:14.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.org1.example.com | [799 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Move state message COMPLETED -peer0.org2.example.com | [81e 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9212907]Move state message COMPLETED -peer1.org2.example.com | [8c7 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [7ff 01-05 02:51:14.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 -orderer.example.com | [5bc 01-05 02:50:27.73 UTC] [github.com/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 | [79a 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [81f 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d9212907]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [800 01-05 02:51:14.93 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 | [8c8 01-05 02:51:05.67 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 | [79b 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]send state message COMPLETED -orderer.example.com | [5bd 01-05 02:50:27.73 UTC] [github.com/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.org1.example.com | [801 01-05 02:51:14.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 | [820 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d9212907]send state message COMPLETED -peer1.org2.example.com | [8c9 01-05 02:51:05.68 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 | [5be 01-05 02:50:27.73 UTC] [github.com/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 | [821 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d9212907]Received message COMPLETED from shim -peer1.org1.example.com | [802 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [5bf 01-05 02:50:27.73 UTC] [github.com/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 | [79c 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message COMPLETED from shim -peer1.org2.example.com | [8ca 01-05 02:51:05.68 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 | [5c0 01-05 02:50:27.73 UTC] [github.com/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 | [803 01-05 02:51:14.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.org2.example.com | [822 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d9212907]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [79d 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [8cb 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [5c1 01-05 02:50:27.73 UTC] [github.com/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.org1.example.com | [804 01-05 02:51:14.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 | [79e 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [823 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d9212907-0091-4e4a-8564-c2a2b99bd1dd]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [8cc 01-05 02:51:05.68 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 | [5c2 01-05 02:50:27.73 UTC] [github.com/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 | [79f 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070, channelID:businesschannel -peer1.org1.example.com | [805 01-05 02:51:14.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.org2.example.com | [824 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d9212907-0091-4e4a-8564-c2a2b99bd1dd, channelID:businesschannel -peer1.org2.example.com | [8cd 01-05 02:51:05.68 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 | [7a0 01-05 02:50:56.11 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 | [5c3 01-05 02:50:27.73 UTC] [github.com/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 | [806 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -peer0.org2.example.com | [825 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [7a1 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [826 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer1.org1.example.com | [807 01-05 02:51:14.93 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 | [8ce 01-05 02:51:05.68 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 | [5c4 01-05 02:50:27.73 UTC] [github.com/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 | [7a2 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [8cf 01-05 02:51:05.68 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 | [5c5 01-05 02:50:27.73 UTC] [github.com/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 | [808 01-05 02:51:14.93 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 | [827 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc423ef6400 -peer1.org2.example.com | [8d0 01-05 02:51:05.68 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 | [7a3 01-05 02:50:56.11 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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer0.org2.example.com | [828 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc423e6cc30 envbytes 0xc423ef6400 -orderer.example.com | [5c6 01-05 02:50:27.73 UTC] [github.com/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 | [809 01-05 02:51:14.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 | [8d1 01-05 02:51:05.68 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 | [829 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423e76d00 env 0xc423e6cc30 txn 0 -peer0.org1.example.com | [7a4 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54540) -orderer.example.com | [5c7 01-05 02:50:27.73 UTC] [github.com/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 | [80a 01-05 02:51:14.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" -peer1.org2.example.com | [8d2 01-05 02:51:05.68 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 | [5c8 01-05 02:50:27.73 UTC] [github.com/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 | [82a 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [80b 01-05 02:51:14.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" -peer1.org2.example.com | [8d3 01-05 02:51:05.68 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 [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] marked as valid by state validator -peer0.org1.example.com | [7a5 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -orderer.example.com | [5c9 01-05 02:50:27.73 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 | [8d4 01-05 02:51:05.68 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 | [82b 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [80c 01-05 02:51:14.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 | [5ca 01-05 02:50:27.73 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 | [7a6 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [8d5 01-05 02:51:05.68 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 | [80d 01-05 02:51:14.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" -orderer.example.com | [5cb 01-05 02:50:27.73 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 | [82c 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -orderer.example.com | [5cc 01-05 02:50:27.73 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 | [7a7 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [8d6 01-05 02:51:05.68 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 | [80e 01-05 02:51:14.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" -orderer.example.com | [5cd 01-05 02:50:27.73 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.org2.example.com | [82d 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [80f 01-05 02:51:14.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 | [7a8 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423181180 env 0xc4231a1890 txn 0 -orderer.example.com | [5ce 01-05 02:50:27.73 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 | [810 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [82e 01-05 02:51:05.71 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 | [8d7 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -orderer.example.com | [5cf 01-05 02:50:27.73 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 | [7a9 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4231a1890 -peer0.org2.example.com | [82f 01-05 02:51:05.71 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 | [8d8 01-05 02:51:05.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 [6] -orderer.example.com | [5d0 01-05 02:50:27.73 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 | [811 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7aa 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -orderer.example.com | [5d1 01-05 02:50:27.73 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 | [830 01-05 02:51:05.71 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 | [8d9 01-05 02:51:05.68 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{0x97, 0xdc, 0xe2, 0x89, 0x84, 0x47, 0xe2, 0x45, 0x40, 0xea, 0x20, 0xe4, 0xf, 0x22, 0x6b, 0x86, 0x1e, 0x9c, 0x6d, 0x3a, 0xe1, 0x5e, 0x59, 0xbd, 0xd4, 0x2c, 0x25, 0x5b, 0x47, 0x73, 0xa2, 0xfc} txOffsets= -orderer.example.com | [5d2 01-05 02:50:27.73 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 | [812 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [7ab 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [831 01-05 02:51:05.71 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 | [5d3 01-05 02:50:27.73 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.org2.example.com | txId=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 locPointer=offset=70, bytesLength=2921 -orderer.example.com | [5d4 01-05 02:50:27.73 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 | [813 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7ac 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [5d5 01-05 02:50:27.73 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 | [832 01-05 02:51:05.71 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 | ] -orderer.example.com | [5d6 01-05 02:50:27.73 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 | [7ad 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -peer1.org1.example.com | [814 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5d7 01-05 02:50:27.73 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.org2.example.com | [8da 01-05 02:51:05.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=55594, bytesLength=2921] for tx ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to index -peer0.org2.example.com | [833 01-05 02:51:05.71 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 | [7ae 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [815 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5d8 01-05 02:50:27.73 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 | [8db 01-05 02:51:05.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=55594, bytesLength=2921] for tx number:[0] ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to blockNumTranNum index -peer0.org1.example.com | [7af 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [834 01-05 02:51:05.71 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 | [8dc 01-05 02:51:05.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=[60310], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | [5d9 01-05 02:50:27.73 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 | [7b0 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42180b800, header channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -peer0.org2.example.com | [835 01-05 02:51:05.71 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 | [816 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [8dd 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -peer0.org2.example.com | [836 01-05 02:51:05.71 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 | [5da 01-05 02:50:27.73 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.org1.example.com | [817 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [7b1 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [8de 01-05 02:51:05.69 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 | [5db 01-05 02:50:27.74 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.org2.example.com | [837 01-05 02:51:05.71 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 [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] marked as valid by state validator -peer1.org1.example.com | [818 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [8df 01-05 02:51:05.69 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 | [7b2 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [5dc 01-05 02:50:27.74 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 | [819 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [838 01-05 02:51:05.71 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 | [7b3 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [8e0 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer1.org1.example.com | [81a 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [839 01-05 02:51:05.71 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 | [7b4 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | [5dd 01-05 02:50:27.74 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 | [81b 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [8e1 01-05 02:51:05.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.org2.example.com | [83a 01-05 02:51:05.71 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 | [81c 01-05 02:51:14.97 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 | [5de 01-05 02:50:27.74 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 | [7b5 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org1.example.com | [81d 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [83b 01-05 02:51:05.71 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 | [8e2 01-05 02:51:05.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 -orderer.example.com | [5df 01-05 02:50:27.74 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 | [7b6 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [81e 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [83c 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -peer1.org2.example.com | [8e3 01-05 02:51:05.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}] -peer1.org1.example.com | [81f 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [7b7 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4231a1890 envbytes 0xc422f7e000 -peer1.org2.example.com | [8e4 01-05 02:51:05.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.org2.example.com | [83d 01-05 02:51:05.72 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{0x97, 0xdc, 0xe2, 0x89, 0x84, 0x47, 0xe2, 0x45, 0x40, 0xea, 0x20, 0xe4, 0xf, 0x22, 0x6b, 0x86, 0x1e, 0x9c, 0x6d, 0x3a, 0xe1, 0x5e, 0x59, 0xbd, 0xd4, 0x2c, 0x25, 0x5b, 0x47, 0x73, 0xa2, 0xfc} txOffsets= -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [820 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [7b8 01-05 02:50:58.13 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 = [6a4d92e7-8498-46f9-946d-2efeb7a9f76a] -peer1.org2.example.com | [8e5 01-05 02:51:05.69 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 | txId=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 locPointer=offset=70, bytesLength=2921 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [821 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [8e6 01-05 02:51:05.69 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 | [7b9 01-05 02:50:58.13 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 | 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 +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 +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] +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 +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 +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 +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) +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 +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) +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 +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) +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 +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 +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 +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 +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 +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 | 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 +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 +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 +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" +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 +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() +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 +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 +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 +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 | 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 +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 | [8e7 01-05 02:51:05.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 [6] with [1] transactions -peer1.org1.example.com | [822 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org2.example.com | [83e 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to index -peer0.org1.example.com | [7ba 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6a4d92e7-8498-46f9-946d-2efeb7a9f76a] -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [823 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [8e8 01-05 02:51:05.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 [6] -peer0.org2.example.com | [83f 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx number:[0] ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to blockNumTranNum index -peer0.org1.example.com | [7bb 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422f7e000 -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org2.example.com | [8e9 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [824 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [840 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60310], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org1.example.com | [7bc 01-05 02:50:58.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 | [825 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org1.example.com | [7bd 01-05 02:50:58.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 = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org2.example.com | [8ea 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 -peer0.org2.example.com | [841 01-05 02:51:05.72 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 | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [826 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [842 01-05 02:51:05.73 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 | [7be 01-05 02:50:58.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=e17c3432-7931-42ac-832f-28fffd23a7af,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer1.org2.example.com | [8eb 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -peer1.org1.example.com | [827 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [843 01-05 02:51:05.73 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 | [7bf 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 chaindID businesschannel -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer1.org2.example.com | [8ec 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [844 01-05 02:51:05.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer1.org1.example.com | [828 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer1.org2.example.com | [8ed 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [7c0 01-05 02:50:58.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 -peer0.org2.example.com | [845 01-05 02:51:05.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [829 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [8ee 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [846 01-05 02:51:05.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [847 01-05 02:51:05.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [82a 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [7c1 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [5e0 01-05 02:50:27.74 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 | [8ef 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [848 01-05 02:51:05.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org1.example.com | [7c2 01-05 02:50:58.13 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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [82b 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [8f0 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [7c3 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e17c3432]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [849 01-05 02:51:05.73 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 | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [8f1 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [82c 01-05 02:51:14.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 | [7c4 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [82d 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [84a 01-05 02:51:05.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer1.org2.example.com | [8f2 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [7c5 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e17c3432]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [82e 01-05 02:51:14.97 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 | [7c6 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e17c3432]Move state message TRANSACTION -peer1.org2.example.com | [8f3 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [84b 01-05 02:51:05.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org1.example.com | [82f 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [7c7 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e17c3432]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [830 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [7c8 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [84c 01-05 02:51:05.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 [6] -peer1.org2.example.com | [8f4 01-05 02:51:14.87 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -peer1.org1.example.com | [831 01-05 02:51:14.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 | [7c9 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e17c3432]sending state message TRANSACTION -peer1.org1.example.com | [832 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [84d 01-05 02:51:05.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [8f5 01-05 02:51:14.87 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -peer0.org1.example.com | [7ca 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]Received message TRANSACTION from shim -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [833 01-05 02:51:14.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 | [7cb 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e17c3432]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [84e 01-05 02:51:05.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -peer1.org1.example.com | [834 01-05 02:51:14.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [7cc 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e17c3432]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [8f6 01-05 02:51:14.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [835 01-05 02:51:14.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [7cd 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [84f 01-05 02:51:05.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [836 01-05 02:51:14.98 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 | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [7ce 01-05 02:50:58.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 | [8f8 01-05 02:51:14.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4242bfce0 env 0xc4242e3d40 txn 0 -peer1.org1.example.com | [837 01-05 02:51:14.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 | [7cf 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [850 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [8f9 01-05 02:51:14.88 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4242e3d40 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer1.org1.example.com | [838 01-05 02:51:14.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [7d0 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [8f7 01-05 02:51:14.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [839 01-05 02:51:14.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [851 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [7d1 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]Move state message COMPLETED -peer1.org1.example.com | [83a 01-05 02:51:14.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [852 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer1.org2.example.com | [8fa 01-05 02:51:14.88 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -peer0.org1.example.com | [7d2 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e17c3432]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [83b 01-05 02:51:14.98 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 | [853 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [8fb 01-05 02:51:14.88 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [7d3 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]send state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [83c 01-05 02:51:14.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer0.org1.example.com | [7d4 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e17c3432]Received message COMPLETED from shim -peer0.org2.example.com | [854 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [8fc 01-05 02:51:14.88 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [83d 01-05 02:51:14.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 | [7d5 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e17c3432]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [5e1 01-05 02:50:27.74 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 | [8fd 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer1.org1.example.com | [83e 01-05 02:51:14.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [7d6 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e17c3432-7931-42ac-832f-28fffd23a7af]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [855 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [83f 01-05 02:51:14.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 | [5e2 01-05 02:50:27.74 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 | [7d7 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e17c3432-7931-42ac-832f-28fffd23a7af, channelID:businesschannel -peer1.org2.example.com | [8fe 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [840 01-05 02:51:14.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [856 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [7d8 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [841 01-05 02:51:14.98 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 | [8ff 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [5e3 01-05 02:50:27.74 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 | [7d9 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -peer1.org1.example.com | [842 01-05 02:51:14.98 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 | [857 01-05 02:51:05.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [900 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc424392a80, header channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -peer0.org1.example.com | [7da 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422f7e000 -orderer.example.com | [5e4 01-05 02:50:27.74 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 | [858 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [843 01-05 02:51:14.98 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 | [7db 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4231a1890 envbytes 0xc422f7e000 -peer1.org2.example.com | [901 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [7dc 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423181180 env 0xc4231a1890 txn 0 -peer0.org2.example.com | [859 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [5e5 01-05 02:50:27.74 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 | [844 01-05 02:51:14.98 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 | [7dd 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [902 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [5e6 01-05 02:50:27.74 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 | [85a 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc424b3e680 env 0xc424a5f9e0 txn 0 -peer1.org1.example.com | [845 01-05 02:51:14.98 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 | [7de 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [903 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [5e7 01-05 02:50:27.74 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 | [7df 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer1.org1.example.com | [846 01-05 02:51:14.98 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 | [85b 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424a5f9e0 -peer0.org1.example.com | [7e0 01-05 02:50:58.14 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 | [904 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [5e8 01-05 02:50:27.74 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 | [7e1 01-05 02:50:58.14 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 | [847 01-05 02:51:14.98 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 | [905 01-05 02:51:14.89 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 | [5e9 01-05 02:50:27.74 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.org2.example.com | [85c 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -peer0.org1.example.com | [7e2 01-05 02:50:58.14 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 | [906 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [848 01-05 02:51:14.98 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 | [85d 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | [5ea 01-05 02:50:27.74 UTC] [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 | [7e3 01-05 02:50:58.14 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 | [907 01-05 02:51:14.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 | [85e 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [5eb 01-05 02:50:27.74 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 | [7e4 01-05 02:50:58.14 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 | [908 01-05 02:51:14.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 | [849 01-05 02:51:14.98 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 | [909 01-05 02:51:14.89 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 | [85f 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -orderer.example.com | [5ec 01-05 02:50:27.74 UTC] [github.com/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 | [90a 01-05 02:51:14.89 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 | [7e5 01-05 02:50:58.14 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 | [84a 01-05 02:51:14.99 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 | [860 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [90b 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [5ed 01-05 02:50:27.74 UTC] [github.com/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 | [90c 01-05 02:51:14.89 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 | [7e6 01-05 02:50:58.14 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 | [861 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [84b 01-05 02:51:14.99 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 | [90d 01-05 02:51:14.89 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 | MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [862 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc424b44a80, header channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -peer1.org1.example.com | [84c 01-05 02:51:14.99 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 | [7e7 01-05 02:50:58.14 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 | [90e 01-05 02:51:14.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 | [863 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [90f 01-05 02:51:14.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.org1.example.com | [7e8 01-05 02:50:58.14 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 | [84d 01-05 02:51:14.99 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 | [910 01-05 02:51:14.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 | [864 01-05 02:51:14.91 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 | [84e 01-05 02:51:14.99 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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [911 01-05 02:51:14.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.org1.example.com | [7e9 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org2.example.com | [865 01-05 02:51:14.91 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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [84f 01-05 02:51:14.99 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 | [912 01-05 02:51:14.90 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-05 02:51:14.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 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7ea 01-05 02:50:58.14 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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] marked as valid by state validator -peer1.org1.example.com | [850 01-05 02:51:14.99 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 | [866 01-05 02:51:14.91 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 | [914 01-05 02:51:14.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 -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [851 01-05 02:51:14.99 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 | [915 01-05 02:51:14.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 | [7eb 01-05 02:50:58.14 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 | [867 01-05 02:51:14.91 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 | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [852 01-05 02:51:14.99 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 | [916 01-05 02:51:14.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 -peer0.org2.example.com | [868 01-05 02:51:14.91 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 | [7ed 01-05 02:50:58.14 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 | [917 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -peer1.org1.example.com | [853 01-05 02:51:14.99 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 | [918 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org2.example.com | [869 01-05 02:51:14.91 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 | [7ec 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer1.org1.example.com | [854 01-05 02:51:14.99 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 | [919 01-05 02:51:14.90 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 | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [86a 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [855 01-05 02:51:14.99 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 | [91a 01-05 02:51:14.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 -peer0.org1.example.com | [7ee 01-05 02:50:58.14 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 | [86b 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [91b 01-05 02:51:14.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 | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer0.org1.example.com | [7ef 01-05 02:50:58.14 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 | [86c 01-05 02:51:14.91 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 | [91c 01-05 02:51:14.90 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 | [856 01-05 02:51:14.99 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 | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org1.example.com | [7f0 01-05 02:50:58.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 [5] -peer0.org2.example.com | [86d 01-05 02:51:14.91 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 | [91d 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -peer0.org1.example.com | [7f1 01-05 02:50:58.19 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{0x1a, 0x80, 0x18, 0x1d, 0x93, 0xc3, 0x60, 0x8e, 0xce, 0xbf, 0x47, 0x31, 0xed, 0x4e, 0xf9, 0xa0, 0x87, 0xb9, 0xd2, 0xce, 0x1f, 0xf7, 0x3b, 0xc3, 0xc0, 0x4d, 0x5a, 0xeb, 0x7b, 0x63, 0x3c, 0x18} txOffsets= -peer1.org1.example.com | [857 01-05 02:51:14.99 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 | [86e 01-05 02:51:14.91 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 | txId=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 locPointer=offset=70, bytesLength=2917 -peer1.org1.example.com | [858 01-05 02:51:14.99 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 | oQmWQsjpiQ== -peer0.org2.example.com | [86f 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer1.org2.example.com | [91e 01-05 02:51:14.90 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 | ] -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [859 01-05 02:51:14.99 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 | [870 01-05 02:51:14.91 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 | [7f2 01-05 02:50:58.19 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=2917] for tx ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to index -peer1.org2.example.com | [91f 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org1.example.com | [85a 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [5ee 01-05 02:50:27.74 UTC] [github.com/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 | [871 01-05 02:51:14.91 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 | [7f3 01-05 02:50:58.19 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=2917] for tx number:[0] ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to blockNumTranNum index -peer1.org2.example.com | [920 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [85b 01-05 02:51:14.99 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 | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7f4 01-05 02:50:58.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=[55524], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [921 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [872 01-05 02:51:14.91 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 | [85c 01-05 02:51:14.99 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7f5 01-05 02:50:58.20 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 | [873 01-05 02:51:14.91 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 | [922 01-05 02:51:14.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 | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [85d 01-05 02:51:14.99 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 | [7f6 01-05 02:50:58.20 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 | [923 01-05 02:51:14.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.org2.example.com | [874 01-05 02:51:14.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 | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer1.org1.example.com | [85e 01-05 02:51:14.99 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 | [7f7 01-05 02:50:58.20 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 | [924 01-05 02:51:14.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" -peer0.org2.example.com | [875 01-05 02:51:14.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 | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [85f 01-05 02:51:14.99 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 | [925 01-05 02:51:14.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.org2.example.com | [876 01-05 02:51:14.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 -peer0.org1.example.com | [7f8 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer1.org1.example.com | [860 01-05 02:51:14.99 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 | [926 01-05 02:51:14.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.org2.example.com | [877 01-05 02:51:14.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 | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [7f9 01-05 02:50:58.20 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 | [927 01-05 02:51:14.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" -peer1.org1.example.com | [861 01-05 02:51:14.99 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 | [878 01-05 02:51:14.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 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | [7fa 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [928 01-05 02:51:14.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.org2.example.com | [879 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org1.example.com | [862 01-05 02:51:14.99 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 | [7fb 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org2.example.com | [87a 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer1.org1.example.com | [863 01-05 02:51:14.99 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 | [929 01-05 02:51:14.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.org2.example.com | [87b 01-05 02:51:14.92 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 | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer1.org1.example.com | [864 01-05 02:51:14.99 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 | [92a 01-05 02:51:14.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 | [7fc 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org2.example.com | [87c 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -peer1.org2.example.com | [92b 01-05 02:51:14.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 | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer1.org1.example.com | [865 01-05 02:51:14.99 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 | [87d 01-05 02:51:14.92 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 | [7fd 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [92c 01-05 02:51:14.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" -peer1.org1.example.com | [866 01-05 02:51:14.99 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 | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org1.example.com | [7fe 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer0.org2.example.com | [87e 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer1.org2.example.com | [92d 01-05 02:51:14.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.org2.example.com | [87f 01-05 02:51:14.92 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 | [880 01-05 02:51:14.92 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 | [7ff 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [92e 01-05 02:51:14.92 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 | [867 01-05 02:51:14.99 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 | jTZ94VyvHhJOn4fshoU= -peer0.org2.example.com | [881 01-05 02:51:14.92 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 | [800 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org2.example.com | [882 01-05 02:51:14.92 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 | [92f 01-05 02:51:14.92 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 | [868 01-05 02:51:14.99 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 | -----END CERTIFICATE----- -peer0.org2.example.com | [883 01-05 02:51:14.92 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 | [801 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [869 01-05 02:51:14.99 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 | [884 01-05 02:51:14.92 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 | [930 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [802 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 -peer1.org1.example.com | [86a 01-05 02:51:14.99 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 | [803 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [885 01-05 02:51:14.92 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 | [931 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [5ef 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [86b 01-05 02:51:14.99 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 | [804 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [886 01-05 02:51:14.92 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 | [932 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [5f0 01-05 02:50:27.74 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 | [86c 01-05 02:51:14.99 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 | [805 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [887 01-05 02:51:14.92 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 | [5f1 01-05 02:50:27.74 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 | [933 01-05 02:51:14.92 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 | [806 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [888 01-05 02:51:14.92 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 | [86d 01-05 02:51:14.99 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 | [934 01-05 02:51:14.92 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 | [5f2 01-05 02:50:27.74 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 | [889 01-05 02:51:14.92 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 | [807 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [86e 01-05 02:51:14.99 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 | [935 01-05 02:51:14.92 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 | [5f3 01-05 02:50:27.74 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.org2.example.com | [88a 01-05 02:51:14.92 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 | [808 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [86f 01-05 02:51:14.99 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 | [5f4 01-05 02:50:27.74 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 | [936 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [88b 01-05 02:51:14.92 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 | [870 01-05 02:51:14.99 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 | [809 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [937 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [88c 01-05 02:51:14.92 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 | [871 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [5f5 01-05 02:50:27.74 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 | [938 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [88d 01-05 02:51:14.92 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 | [872 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [80a 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [5f6 01-05 02:50:27.74 UTC] [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 | [939 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [5f7 01-05 02:50:27.74 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 | [88e 01-05 02:51:14.92 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 | [80b 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [873 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [93a 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [88f 01-05 02:51:14.92 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 | [874 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [80c 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54554 -peer1.org2.example.com | [93b 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [5f8 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org1.example.com | [875 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [890 01-05 02:51:14.92 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 | [5f9 01-05 02:50:27.74 UTC] [github.com/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 | [93c 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [876 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [80d 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d59e60 -peer0.org2.example.com | [891 01-05 02:51:14.92 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 | [93d 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [80e 01-05 02:51:03.77 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 | MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [892 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [93e 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [80f 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [877 01-05 02:51:15.00 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 | [893 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [93f 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [810 01-05 02:51:03.77 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.org1.example.com | [878 01-05 02:51:15.03 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 | [894 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [940 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [879 01-05 02:51:15.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [895 01-05 02:51:14.92 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 | [811 01-05 02:51:03.77 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 | [896 01-05 02:51:14.92 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 | [941 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer1.org1.example.com | [87a 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [897 01-05 02:51:14.92 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 | [812 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | [942 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [898 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [87b 01-05 02:51:15.07 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 | [813 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42191e230, header 0xc421d59e90 -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org2.example.com | [899 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [814 01-05 02:51:03.77 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 | [87c 01-05 02:51:15.07 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 | [943 01-05 02:51:14.92 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 | [89a 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [89b 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [87d 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -peer0.org2.example.com | [89c 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [815 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a -peer1.org2.example.com | [944 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -peer0.org2.example.com | [89d 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [87e 01-05 02:51:15.07 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 | [945 01-05 02:51:14.92 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 | [89e 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [816 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -orderer.example.com | tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | [946 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [89f 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [87f 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [8a0 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [947 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -peer0.org1.example.com | [817 01-05 02:51:03.77 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 | [8a1 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [880 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4235f5d20 env 0xc4235e8f90 txn 0 -peer0.org2.example.com | [8a2 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [948 01-05 02:51:14.93 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 | [818 01-05 02:51:03.77 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 = [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -orderer.example.com | Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -peer0.org2.example.com | [8a3 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [881 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [949 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [8a4 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -peer0.org1.example.com | [819 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel -peer0.org2.example.com | [8a5 01-05 02:51:14.92 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 | [8a6 01-05 02:51:14.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [882 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [94a 01-05 02:51:14.93 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 | [81a 01-05 02:51:03.77 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=3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a,syscc=true,proposal=0xc42191e230,canname=lscc:1.1.0 -orderer.example.com | vA2BLfriqQ== -peer0.org2.example.com | [8a7 01-05 02:51:14.92 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 | [94b 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [81b 01-05 02:51:03.77 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 | [883 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [8a8 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [94c 01-05 02:51:14.93 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 | [81c 01-05 02:51:03.77 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 | [884 01-05 02:51:15.07 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 | [8a9 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [5fa 01-05 02:50:27.74 UTC] [github.com/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 | [885 01-05 02:51:15.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] -peer0.org2.example.com | [8aa 01-05 02:51:14.93 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 | [94d 01-05 02:51:14.93 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 | [81d 01-05 02:51:03.77 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 | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | [8ab 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [886 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] -peer1.org2.example.com | [94e 01-05 02:51:14.93 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 | [81e 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [8ac 01-05 02:51:14.93 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 | [94f 01-05 02:51:14.93 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.org1.example.com | [887 01-05 02:51:15.07 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 | [950 01-05 02:51:14.93 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 | [81f 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [8ad 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [951 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [888 01-05 02:51:15.07 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 | [820 01-05 02:51:03.77 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 | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer1.org2.example.com | [952 01-05 02:51:14.93 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 | [8ae 01-05 02:51:14.93 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 | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [889 01-05 02:51:15.07 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 | [953 01-05 02:51:14.93 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 | [8af 01-05 02:51:14.93 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 | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | [88a 01-05 02:51:15.07 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 | [821 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [954 01-05 02:51:14.93 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 | [8b0 01-05 02:51:14.93 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 | [88b 01-05 02:51:15.07 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 | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer1.org2.example.com | [955 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [822 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Move state message TRANSACTION -peer0.org2.example.com | [8b1 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [956 01-05 02:51:14.93 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 | [88c 01-05 02:51:15.07 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 | [823 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -peer0.org2.example.com | [8b2 01-05 02:51:14.93 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 | [957 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [88d 01-05 02:51:15.07 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [824 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [8b3 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [958 01-05 02:51:14.93 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 | [825 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]sending state message TRANSACTION -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org1.example.com | [826 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Received message TRANSACTION from shim -peer1.org2.example.com | [959 01-05 02:51:14.93 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 | [8b4 01-05 02:51:14.93 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 | [88e 01-05 02:51:15.08 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 | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org1.example.com | [827 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [8b5 01-05 02:51:14.93 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 | [88f 01-05 02:51:15.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 -peer1.org2.example.com | [95a 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer1.org1.example.com | [890 01-05 02:51:15.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 -peer0.org1.example.com | [828 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c7326ec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [8b6 01-05 02:51:14.93 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 | [95b 01-05 02:51:14.94 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 | [891 01-05 02:51:15.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 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [829 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c7326ec]Sending GET_STATE -peer0.org2.example.com | [8b7 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [892 01-05 02:51:15.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 -orderer.example.com | [5fb 01-05 02:50:27.74 UTC] [github.com/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 | [95c 01-05 02:51:14.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.org1.example.com | [893 01-05 02:51:15.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 -peer0.org1.example.com | [82a 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message GET_STATE from shim -peer0.org2.example.com | [8b8 01-05 02:51:14.93 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 | [894 01-05 02:51:15.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 -orderer.example.com | [5fc 01-05 02:50:27.74 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 | [95d 01-05 02:51:14.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.org1.example.com | [895 01-05 02:51:15.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 -peer0.org2.example.com | [8b9 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [82b 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [896 01-05 02:51:15.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 -orderer.example.com | [5fd 01-05 02:50:27.74 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 | [897 01-05 02:51:15.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 | [95e 01-05 02:51:14.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 -orderer.example.com | [5fe 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [8ba 01-05 02:51:14.93 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 | [82c 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3c7326ec]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [898 01-05 02:51:15.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 | [95f 01-05 02:51:14.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 -peer1.org1.example.com | [899 01-05 02:51:15.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 -peer0.org1.example.com | [82d 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [5ff 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [8bb 01-05 02:51:14.93 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 | [89a 01-05 02:51:15.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 | [960 01-05 02:51:14.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 -peer0.org1.example.com | [82e 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | [600 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer0.org2.example.com | [8bc 01-05 02:51:14.93 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 | [89b 01-05 02:51:15.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 -peer0.org1.example.com | [82f 01-05 02:51:03.77 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 | [961 01-05 02:51:14.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 -orderer.example.com | [601 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org1.example.com | [89c 01-05 02:51:15.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 -peer0.org2.example.com | [8bd 01-05 02:51:14.93 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 | [89d 01-05 02:51:15.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 | [962 01-05 02:51:14.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 -peer0.org1.example.com | [830 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec]Got state. Sending RESPONSE -peer1.org1.example.com | [89e 01-05 02:51:15.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 -orderer.example.com | [602 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org2.example.com | [8be 01-05 02:51:14.93 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-05 02:51:15.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 -peer0.org1.example.com | [831 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3c7326ec]handleGetState serial send RESPONSE -peer1.org2.example.com | [963 01-05 02:51:14.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 -orderer.example.com | [603 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org2.example.com | [8bf 01-05 02:51:14.93 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 | [8a0 01-05 02:51:15.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 | [964 01-05 02:51:14.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 -peer0.org1.example.com | [832 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Received message RESPONSE from shim -peer0.org2.example.com | [8c0 01-05 02:51:14.93 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 | [604 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer1.org1.example.com | [8a1 01-05 02:51:15.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 -peer0.org1.example.com | [833 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [965 01-05 02:51:14.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 -orderer.example.com | [605 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer0.org2.example.com | [8c1 01-05 02:51:14.93 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 | [8a2 01-05 02:51:15.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 -peer1.org2.example.com | [966 01-05 02:51:14.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 -orderer.example.com | [606 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer0.org2.example.com | [8c2 01-05 02:51:14.93 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 | [834 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c7326ec]before send -peer1.org2.example.com | [967 01-05 02:51:14.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 | [8a3 01-05 02:51:15.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 -orderer.example.com | [607 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer0.org1.example.com | [835 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c7326ec]after send -peer0.org2.example.com | [8c3 01-05 02:51:14.93 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 | [968 01-05 02:51:14.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 -orderer.example.com | [608 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer0.org2.example.com | [8c4 01-05 02:51:14.93 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 | [8a4 01-05 02:51:15.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 | [609 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer0.org1.example.com | [836 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [3c7326ec]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [969 01-05 02:51:14.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 -peer0.org2.example.com | [8c5 01-05 02:51:14.93 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 | [8a5 01-05 02:51:15.08 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 | [60a 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer1.org2.example.com | [96a 01-05 02:51:14.94 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 | [8c6 01-05 02:51:14.93 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 | [837 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c7326ec]GetState received payload RESPONSE -orderer.example.com | [60b 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer1.org2.example.com | [96b 01-05 02:51:14.94 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 | [8a6 01-05 02:51:15.08 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 | [8c7 01-05 02:51:14.93 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 | [60c 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer1.org1.example.com | [8a7 01-05 02:51:15.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 -peer0.org1.example.com | [838 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [96c 01-05 02:51:14.94 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 | [60d 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer0.org2.example.com | [8c8 01-05 02:51:14.93 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 | [839 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Move state message COMPLETED -orderer.example.com | [60e 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer1.org2.example.com | [96d 01-05 02:51:14.94 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 | [8a8 01-05 02:51:15.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 -orderer.example.com | [60f 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org2.example.com | [8c9 01-05 02:51:14.93 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 | [83a 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [610 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer1.org2.example.com | [96e 01-05 02:51:14.94 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 | [8a9 01-05 02:51:15.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 | [8ca 01-05 02:51:14.93 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 | [611 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -peer1.org1.example.com | [8aa 01-05 02:51:15.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 -peer0.org1.example.com | [83b 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]send state message COMPLETED -peer1.org2.example.com | [96f 01-05 02:51:14.94 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 | [612 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [8cb 01-05 02:51:14.93 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 | [613 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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.org1.example.com | [8ab 01-05 02:51:15.08 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 | [83c 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message COMPLETED from shim -peer1.org2.example.com | [970 01-05 02:51:14.94 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 | [614 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8cc 01-05 02:51:14.93 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 | [83d 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [615 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8ac 01-05 02:51:15.08 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 | [971 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [616 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [8cd 01-05 02:51:14.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 -peer1.org1.example.com | [8ad 01-05 02:51:15.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 -peer0.org1.example.com | [83e 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a]HandleMessage- COMPLETED. Notify -orderer.example.com | [617 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [972 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer1.org1.example.com | [8ae 01-05 02:51:15.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 -orderer.example.com | [618 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org2.example.com | [8ce 01-05 02:51:14.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 | [83f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a, channelID:businesschannel -orderer.example.com | [619 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8cf 01-05 02:51:14.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/AnchorPeers -peer1.org2.example.com | [973 01-05 02:51:14.94 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 | [840 01-05 02:51:03.78 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 | [8af 01-05 02:51:15.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 -orderer.example.com | [61a 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8d0 01-05 02:51:14.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 -peer0.org1.example.com | [841 01-05 02:51:03.78 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 | [8b0 01-05 02:51:15.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 | [61b 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [974 01-05 02:51:14.94 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 | [8d1 01-05 02:51:14.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 -peer1.org1.example.com | [8b1 01-05 02:51:15.08 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 | [842 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel version: 1.0 -peer0.org1.example.com | [843 01-05 02:51:03.78 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=3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a,syscc=false,proposal=0xc42191e230,canname=exp02:1.0 -orderer.example.com | [61c 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8d2 01-05 02:51:14.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 -peer1.org1.example.com | [8b2 01-05 02:51:15.08 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 | [975 01-05 02:51:14.94 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 | [844 01-05 02:51:03.78 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 -peer1.org1.example.com | [8b3 01-05 02:51:15.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: [Group] /Channel -orderer.example.com | [61d 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [976 01-05 02:51:14.94 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 | [845 01-05 02:51:03.78 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 | [8d3 01-05 02:51:14.93 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 | [846 01-05 02:51:03.78 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.org2.example.com | [977 01-05 02:51:14.94 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 | [61e 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8b4 01-05 02:51:15.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 | [8d4 01-05 02:51:14.93 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 | [847 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [978 01-05 02:51:14.94 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 | [61f 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8b5 01-05 02:51:15.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.org2.example.com | [8d5 01-05 02:51:14.93 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 | [848 01-05 02:51:03.78 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 | [979 01-05 02:51:14.94 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 | [849 01-05 02:51:03.78 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 | [8d6 01-05 02:51:14.94 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 | [620 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [97a 01-05 02:51:14.94 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 | [8b6 01-05 02:51:15.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 | [84a 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [97b 01-05 02:51:14.94 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 | [8d7 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org1.example.com | [8b7 01-05 02:51:15.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 -peer0.org1.example.com | [84b 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Move state message TRANSACTION -orderer.example.com | [621 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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 | [97c 01-05 02:51:14.94 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 | [8d8 01-05 02:51:14.94 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 | [84c 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [97d 01-05 02:51:14.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.org1.example.com | [8b8 01-05 02:51:15.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 -peer0.org2.example.com | [8d9 01-05 02:51:14.94 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 | [84d 01-05 02:51:03.78 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 | [97e 01-05 02:51:14.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 -orderer.example.com | [622 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [97f 01-05 02:51:14.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 -peer1.org1.example.com | [8b9 01-05 02:51:15.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 -peer0.org2.example.com | [8da 01-05 02:51:14.94 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 | [84e 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]sending state message TRANSACTION -peer1.org2.example.com | [980 01-05 02:51:14.94 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 | [623 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [8ba 01-05 02:51:15.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 | [84f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message GET_STATE from shim -peer1.org2.example.com | [981 01-05 02:51:14.94 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 | [8db 01-05 02:51:14.94 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 | [850 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [982 01-05 02:51:14.94 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 | [8bb 01-05 02:51:15.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 -peer0.org2.example.com | [8dc 01-05 02:51:14.94 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 | [624 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [851 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3c7326ec]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [983 01-05 02:51:14.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 | [8bc 01-05 02:51:15.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/Capabilities -peer0.org2.example.com | [8dd 01-05 02:51:14.94 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 | [625 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [852 01-05 02:51:03.78 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 | [984 01-05 02:51:14.94 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 | [8bd 01-05 02:51:15.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 | [853 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [985 01-05 02:51:14.95 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 | [8de 01-05 02:51:14.94 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 | [626 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [8be 01-05 02:51:15.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.org2.example.com | [986 01-05 02:51:14.95 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 | [854 01-05 02:51:03.78 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 | [8df 01-05 02:51:14.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 -orderer.example.com | [627 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [987 01-05 02:51:14.95 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 | [855 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec]Got state. Sending RESPONSE -peer0.org2.example.com | [8e0 01-05 02:51:14.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.org1.example.com | [8bf 01-05 02:51:15.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/Admins -peer1.org2.example.com | [988 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [628 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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 | [989 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [856 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3c7326ec]handleGetState serial send RESPONSE -peer1.org2.example.com | [98a 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [8c0 01-05 02:51:15.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/Readers -orderer.example.com | [629 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org2.example.com | [8e1 01-05 02:51:14.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 | [857 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message COMPLETED from shim -peer1.org2.example.com | [98b 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [8c1 01-05 02:51:15.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/Writers -peer1.org2.example.com | [98c 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [8e2 01-05 02:51:14.94 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 | [62a 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org2.example.com | [98d 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [858 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [8c2 01-05 02:51:15.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/BlockValidation -orderer.example.com | [62b 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org2.example.com | [8e3 01-05 02:51:14.94 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 | [98e 01-05 02:51:14.95 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 | [8c3 01-05 02:51:15.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 -peer0.org1.example.com | [859 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [98f 01-05 02:51:14.99 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | [62c 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [8e4 01-05 02:51:14.94 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 | [8c4 01-05 02:51:15.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/Org1MSP -peer1.org2.example.com | [990 01-05 02:51:15.00 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [85a 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a, channelID:businesschannel -orderer.example.com | [62d 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [8e5 01-05 02:51:14.94 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 | [8c5 01-05 02:51:15.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/Org1MSP/AnchorPeers -peer0.org1.example.com | [85b 01-05 02:51:03.78 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 | [62e 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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.org2.example.com | [991 01-05 02:51:15.01 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 | [8e6 01-05 02:51:14.94 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 | [8c6 01-05 02:51:15.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/Org1MSP/MSP -peer1.org2.example.com | [992 01-05 02:51:15.01 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 | [8c7 01-05 02:51:15.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 -orderer.example.com | [62f 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [8e7 01-05 02:51:14.94 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 | [85c 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [993 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -orderer.example.com | [630 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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.org1.example.com | [85d 01-05 02:51:03.78 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 | [8c8 01-05 02:51:15.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 -peer0.org2.example.com | [8e8 01-05 02:51:14.94 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 | [994 01-05 02:51:15.01 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 | [85e 01-05 02:51:03.78 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 [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -orderer.example.com | [631 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [8e9 01-05 02:51:14.94 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 | [8c9 01-05 02:51:15.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/Readers -peer1.org2.example.com | [995 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [85f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [632 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [8ca 01-05 02:51:15.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 -peer0.org2.example.com | [8ea 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [860 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel chaincode id: name:"exp02" -peer1.org1.example.com | [8cb 01-05 02:51:15.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/AnchorPeers -peer1.org2.example.com | [996 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4242bfce0 env 0xc4242e3d40 txn 0 -orderer.example.com | [633 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 | [8cc 01-05 02:51:15.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 -peer0.org2.example.com | [8eb 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [861 01-05 02:51:03.78 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.org2.example.com | [997 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [634 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 | [862 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel version: 1.1.0 -peer1.org1.example.com | [8cd 01-05 02:51:15.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 -orderer.example.com | [635 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [863 01-05 02:51:03.78 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=3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a,syscc=true,proposal=0xc42191e230,canname=escc:1.1.0 -peer1.org2.example.com | [998 01-05 02:51:15.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [8ce 01-05 02:51:15.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 | [8ec 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [864 01-05 02:51:03.78 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 | [636 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [8cf 01-05 02:51:15.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 -peer1.org2.example.com | [999 01-05 02:51:15.02 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [8ed 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [637 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 | [8d0 01-05 02:51:15.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/Org3MSP -peer0.org1.example.com | [865 01-05 02:51:03.78 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 | [99a 01-05 02:51:15.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -orderer.example.com | [638 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 | [8ee 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [8d1 01-05 02:51:15.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/Org3MSP/MSP -peer0.org1.example.com | [866 01-05 02:51:03.78 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 | [639 01-05 02:50:27.74 UTC] [github.com/hyperledger/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.org2.example.com | [8ef 01-05 02:51:14.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [99b 01-05 02:51:15.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] -peer0.org1.example.com | [867 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [8d2 01-05 02:51:15.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/Org3MSP/Admins -peer0.org2.example.com | [8f0 01-05 02:51:14.94 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 | [99c 01-05 02:51:15.03 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 | [63a 01-05 02:50:27.74 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.org1.example.com | [8d3 01-05 02:51:15.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/Org3MSP/Readers -peer0.org1.example.com | [868 01-05 02:51:03.78 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 | [99d 01-05 02:51:15.03 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 | [8f1 01-05 02:51:14.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 -peer1.org1.example.com | [8d4 01-05 02:51:15.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/Org3MSP/Writers -orderer.example.com | [63b 01-05 02:50:27.74 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 | [869 01-05 02:51:03.78 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 | [8d5 01-05 02:51:15.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 -peer1.org2.example.com | [99e 01-05 02:51:15.03 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 | [8f2 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [8d6 01-05 02:51:15.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 -peer0.org1.example.com | [86a 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [63c 01-05 02:50:27.74 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 | [8f3 01-05 02:51:15.10 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [8d7 01-05 02:51:15.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.org1.example.com | [86b 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Move state message TRANSACTION -orderer.example.com | [63d 01-05 02:50:27.74 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 | [8d8 01-05 02:51:15.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.org2.example.com | [8f4 01-05 02:51:15.10 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 | [99f 01-05 02:51:15.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] -peer1.org1.example.com | [8d9 01-05 02:51:15.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 -peer0.org1.example.com | [86c 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [8f5 01-05 02:51:15.10 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 | [8da 01-05 02:51:15.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 -orderer.example.com | [63e 01-05 02:50:27.74 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 | [86d 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [8db 01-05 02:51:15.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/HashingAlgorithm -peer1.org2.example.com | [9a0 01-05 02:51:15.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{} -orderer.example.com | [63f 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [8f6 01-05 02:51:15.10 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 | [8dc 01-05 02:51:15.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/Consortium -peer1.org2.example.com | [9a1 01-05 02:51:15.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 -peer0.org1.example.com | [86e 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]sending state message TRANSACTION -peer0.org2.example.com | [8f7 01-05 02:51:15.10 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | [640 01-05 02:50:27.74 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.org1.example.com | [8dd 01-05 02:51:15.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/BlockDataHashingStructure -peer1.org2.example.com | [9a2 01-05 02:51:15.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 = [] -peer0.org1.example.com | [86f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Received message TRANSACTION from shim -peer0.org2.example.com | [8f8 01-05 02:51:15.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [8de 01-05 02:51:15.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/Writers -orderer.example.com | [641 01-05 02:50:27.74 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 | [9a3 01-05 02:51:15.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [8df 01-05 02:51:15.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.org2.example.com | [8f9 01-05 02:51:15.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc424b3e680 env 0xc424a5f9e0 txn 0 -peer0.org1.example.com | [870 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [642 01-05 02:50:27.74 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 | [8e0 01-05 02:51:15.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 -peer1.org2.example.com | [9a4 01-05 02:51:15.04 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 | [643 01-05 02:50:27.74 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 | [8fa 01-05 02:51:15.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [871 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c7326ec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [8e1 01-05 02:51:15.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 -orderer.example.com | [644 01-05 02:50:27.74 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.org2.example.com | [9a5 01-05 02:51:15.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [8fb 01-05 02:51:15.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [8e2 01-05 02:51:15.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 | [9a6 01-05 02:51:15.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [872 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [8fc 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [8e3 01-05 02:51:15.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 [] -peer1.org2.example.com | [9a7 01-05 02:51:15.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [645 01-05 02:50:27.74 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 | [873 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [9a8 01-05 02:51:15.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [8e4 01-05 02:51:15.09 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 | [8fd 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -orderer.example.com | [646 01-05 02:50:27.74 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 | [874 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [9a9 01-05 02:51:15.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [8fe 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [8e5 01-05 02:51:15.09 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 | [9aa 01-05 02:51:15.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [875 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Move state message COMPLETED -orderer.example.com | [647 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer1.org2.example.com | [9ab 01-05 02:51:15.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.org2.example.com | [8ff 01-05 02:51:15.15 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 | [876 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [9ac 01-05 02:51:15.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 -orderer.example.com | [648 01-05 02:50:27.74 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 | [8e6 01-05 02:51:15.09 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 | [9ad 01-05 02:51:15.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 -peer0.org2.example.com | [900 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [649 01-05 02:50:27.74 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 | [877 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]send state message COMPLETED -peer1.org2.example.com | [9ae 01-05 02:51:15.07 UTC] [github.com/hyperledger/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 | [8e7 01-05 02:51:15.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [64a 01-05 02:50:27.74 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 | [901 01-05 02:51:15.15 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 | [9af 01-05 02:51:15.07 UTC] [github.com/hyperledger/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 | [878 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message COMPLETED from shim -peer1.org1.example.com | [8e8 01-05 02:51:15.09 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 | [902 01-05 02:51:15.15 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 | [64b 01-05 02:50:27.74 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 | [9b0 01-05 02:51:15.07 UTC] [github.com/hyperledger/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 | [879 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [8e9 01-05 02:51:15.12 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 | [9b1 01-05 02:51:15.07 UTC] [github.com/hyperledger/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 | [903 01-05 02:51:15.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{} -orderer.example.com | [64c 01-05 02:50:27.74 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 | [9b2 01-05 02:51:15.07 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 | [8ea 01-05 02:51:15.12 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{0xce, 0x93, 0x4f, 0xbd, 0x9e, 0x8f, 0x46, 0x9e, 0xe8, 0x99, 0xbc, 0xa0, 0x6c, 0x19, 0xb9, 0xe3, 0x95, 0x93, 0xe9, 0xa6, 0x5, 0xd5, 0x4b, 0x7f, 0x4e, 0x5d, 0xd1, 0x32, 0x6c, 0x50, 0x6f, 0x92} txOffsets= -peer0.org1.example.com | [87a 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [9b3 01-05 02:51:15.07 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 | [9b4 01-05 02:51:15.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 -peer0.org2.example.com | [904 01-05 02:51:15.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 -peer1.org1.example.com | txId= locPointer=offset=71, bytesLength=19402 -orderer.example.com | [64d 01-05 02:50:27.74 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 | [87b 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a, channelID:businesschannel -peer1.org2.example.com | [9b5 01-05 02:51:15.09 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 | ] -peer0.org2.example.com | [905 01-05 02:51:15.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 = [] -peer0.org1.example.com | [87c 01-05 02:51:03.79 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 | [64e 01-05 02:50:27.74 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 | [9b6 01-05 02:51:15.09 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 | [906 01-05 02:51:15.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 | [8eb 01-05 02:51:15.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=60381, bytesLength=19402] for tx ID: [] to index -peer0.org1.example.com | [87d 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [64f 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608F3CFBBD20522...D3171BFCBAFBAE42587775EADAFE25BC -peer1.org2.example.com | [9b7 01-05 02:51:15.09 UTC] [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 | [8ec 01-05 02:51:15.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=60381, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [87e 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [650 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 7710C8962AA274C6644BF2DADBC9B08A80CC67DF22F2F00CD8A0DBC20A9907AF -peer0.org2.example.com | [907 01-05 02:51:15.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" > -peer1.org1.example.com | [8ed 01-05 02:51:15.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=[81579], isChainEmpty=[false], lastBlockNumber=[7] -peer1.org2.example.com | [9b8 01-05 02:51:15.09 UTC] [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 | [908 01-05 02:51:15.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 -orderer.example.com | [651 01-05 02:50:27.75 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 | [87f 01-05 02:51:03.79 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 [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -peer0.org2.example.com | [909 01-05 02:51:15.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 | [9b9 01-05 02:51:15.09 UTC] [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 | [8ee 01-05 02:51:15.12 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 | [90a 01-05 02:51:15.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 -orderer.example.com | [652 01-05 02:50:27.75 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 | [880 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54554) -peer0.org2.example.com | [90b 01-05 02:51:15.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 -peer1.org2.example.com | [9ba 01-05 02:51:15.09 UTC] [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 | [881 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54558 -peer0.org2.example.com | [90c 01-05 02:51:15.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 | [8ef 01-05 02:51:15.12 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 | [653 01-05 02:50:27.75 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 | [90d 01-05 02:51:15.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 | [882 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421beb950 -peer1.org1.example.com | [8f0 01-05 02:51:15.13 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 | [9bb 01-05 02:51:15.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 Org2MSP are anchor_peers: -peer0.org2.example.com | [90e 01-05 02:51:15.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 | [883 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [654 01-05 02:50:27.75 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 | [8f1 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -peer0.org2.example.com | [90f 01-05 02:51:15.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 -peer1.org2.example.com | [9bc 01-05 02:51:15.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 Org2MSP -peer0.org1.example.com | [884 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [910 01-05 02:51:15.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 -peer1.org1.example.com | [8f2 01-05 02:51:15.13 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 | [655 01-05 02:50:27.75 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 | [911 01-05 02:51:15.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 -peer1.org2.example.com | [9bd 01-05 02:51:15.09 UTC] [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 | [912 01-05 02:51:15.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 -peer0.org1.example.com | [885 01-05 02:51:04.21 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.org1.example.com | [8f3 01-05 02:51:15.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 -orderer.example.com | [656 01-05 02:50:27.75 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 | [913 01-05 02:51:15.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 -peer1.org2.example.com | [9be 01-05 02:51:15.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.org1.example.com | [886 01-05 02:51:04.21 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 | [914 01-05 02:51:15.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 -peer1.org1.example.com | [8f4 01-05 02:51:15.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 | [9bf 01-05 02:51:15.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.OrganizationProtos -orderer.example.com | [657 01-05 02:50:27.75 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 | [915 01-05 02:51:15.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 | [9c0 01-05 02:51:15.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: MSP -peer0.org1.example.com | [887 01-05 02:51:04.21 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 | [916 01-05 02:51:15.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 -orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [8f5 01-05 02:51:15.13 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 | [888 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42031c9b0, header 0xc421beb980 -peer0.org2.example.com | [917 01-05 02:51:15.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 | [9c1 01-05 02:51:15.10 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 | [8f6 01-05 02:51:15.13 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 | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [889 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [918 01-05 02:51:15.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 -peer1.org2.example.com | [9c2 01-05 02:51:15.10 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 | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [88a 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 -peer1.org1.example.com | [8f7 01-05 02:51:15.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 [7] with [1] transactions -peer0.org1.example.com | [88b 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -peer0.org2.example.com | [919 01-05 02:51:15.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.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [9c3 01-05 02:51:15.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.org1.example.com | [88c 01-05 02:51:04.21 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 | [8f8 01-05 02:51:15.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 -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -peer0.org2.example.com | [91a 01-05 02:51:15.22 UTC] [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 | [9c4 01-05 02:51:15.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 -peer0.org1.example.com | [88d 01-05 02:51:04.21 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 = [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -peer1.org1.example.com | [8f9 01-05 02:51:15.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 [7] -peer0.org2.example.com | [91b 01-05 02:51:15.22 UTC] [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 | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [9c5 01-05 02:51:15.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 -peer1.org1.example.com | [8fa 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [88e 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel -peer0.org2.example.com | [91c 01-05 02:51:15.22 UTC] [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 | [9c6 01-05 02:51:15.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 -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -peer1.org1.example.com | [8fb 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [88f 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [9c7 01-05 02:51:15.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 Org1MSP are anchor_peers: -peer0.org2.example.com | [91d 01-05 02:51:15.22 UTC] [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 | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -peer1.org1.example.com | [8fc 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [890 01-05 02:51:04.21 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=bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1,syscc=true,proposal=0xc42031c9b0,canname=lscc:1.1.0 -peer0.org2.example.com | [91e 01-05 02:51:15.22 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 | [9c8 01-05 02:51:15.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 Org1MSP -peer1.org1.example.com | [8fd 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [891 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -peer0.org2.example.com | [91f 01-05 02:51:15.22 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 | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -peer1.org2.example.com | [9c9 01-05 02:51:15.11 UTC] [github.com/hyperledger/fabric/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 | [892 01-05 02:51:04.21 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 | [8fe 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [920 01-05 02:51:15.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 -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -peer0.org1.example.com | [893 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer1.org1.example.com | [8ff 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [921 01-05 02:51:15.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 -peer1.org2.example.com | [9ca 01-05 02:51:15.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [894 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -peer1.org2.example.com | [9cb 01-05 02:51:15.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 | [922 01-05 02:51:15.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 -peer1.org1.example.com | [900 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [895 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -peer1.org2.example.com | [9cc 01-05 02:51:15.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 -peer1.org1.example.com | [901 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [923 01-05 02:51:15.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 | [896 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [9cd 01-05 02:51:15.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 | [902 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [924 01-05 02:51:15.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 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [897 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [903 01-05 02:51:15.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [9ce 01-05 02:51:15.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 -peer0.org2.example.com | [925 01-05 02:51:15.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 -orderer.example.com | [658 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138ec8 gate 1515120627750870100 evaluation starts -peer1.org2.example.com | [9cf 01-05 02:51:15.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.org1.example.com | [898 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Move state message TRANSACTION -peer0.org2.example.com | [926 01-05 02:51:15.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 -orderer.example.com | [659 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [9d0 01-05 02:51:15.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.org2.example.com | [927 01-05 02:51:15.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 | [899 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [9d1 01-05 02:51:15.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 | [9d2 01-05 02:51:15.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 -peer0.org1.example.com | [89a 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [928 01-05 02:51:15.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 | [89b 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]sending state message TRANSACTION -peer1.org2.example.com | [9d3 01-05 02:51:15.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 | [929 01-05 02:51:15.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 -orderer.example.com | [65a 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [9d4 01-05 02:51:15.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/BatchSize -peer0.org1.example.com | [89c 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Received message TRANSACTION from shim -orderer.example.com | [65b 01-05 02:50:27.75 UTC] [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 | [92a 01-05 02:51:15.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 | [89d 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [9d5 01-05 02:51:15.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 -peer0.org2.example.com | [92b 01-05 02:51:15.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 -orderer.example.com | [65c 01-05 02:50:27.75 UTC] [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 | [65d 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 principal matched by identity 0 -orderer.example.com | [65e 01-05 02:50:27.75 UTC] [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 77 10 c8 96 2a a2 74 c6 64 4b f2 da db c9 b0 8a |w...*.t.dK......| -peer0.org1.example.com | [89e 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bfe64ffc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [9d6 01-05 02:51:15.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 | [92c 01-05 02:51:15.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 -orderer.example.com | 00000010 80 cc 67 df 22 f2 f0 0c d8 a0 db c2 0a 99 07 af |..g."...........| -peer0.org1.example.com | [89f 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [bfe64ffc]Sending GET_STATE -peer1.org2.example.com | [9d7 01-05 02:51:15.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/Writers -orderer.example.com | [65f 01-05 02:50:27.75 UTC] [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 f5 2d ea 1b ed ff d3 9b e5 21 59 |0E.!..-.......!Y| -peer0.org1.example.com | [8a0 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Received message GET_STATE from shim -peer0.org2.example.com | [92d 01-05 02:51:15.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/Orderer -orderer.example.com | 00000010 a5 a0 6b 9f be c8 56 1a af 53 4f 2c b6 60 47 8f |..k...V..SO,.`G.| -peer1.org2.example.com | [9d8 01-05 02:51:15.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/BlockValidation -orderer.example.com | 00000020 5c a9 b2 b0 6d 02 20 01 9d ae dc d3 a5 dd 3b ac |\...m. .......;.| -peer0.org2.example.com | [92e 01-05 02:51:15.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/Orderer/OrdererOrg -peer0.org1.example.com | [8a1 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 00000030 bd ee c9 94 1f b2 bc 86 f1 92 c7 18 88 15 9e 85 |................| -peer1.org2.example.com | [9d9 01-05 02:51:15.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: [Group] /Channel/Application -orderer.example.com | 00000040 79 e1 be bf 64 93 9f |y...d..| -peer0.org1.example.com | [8a2 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [bfe64ffc]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [9da 01-05 02:51:15.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: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [92f 01-05 02:51:15.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/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [8a3 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [660 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [9db 01-05 02:51:15.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/Application/Org2MSP/MSP -orderer.example.com | [661 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138ec8 gate 1515120627750870100 evaluation succeeds -peer0.org1.example.com | [8a4 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bfe64ffc] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org2.example.com | [930 01-05 02:51:15.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/Orderer/OrdererOrg/Admins -orderer.example.com | [662 01-05 02:50:27.75 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 | [9dc 01-05 02:51:15.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/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [931 01-05 02:51:15.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/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [8a5 01-05 02:51:04.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 | [663 01-05 02:50:27.75 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 | [664 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -peer0.org1.example.com | [8a6 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bfe64ffc]Got state. Sending RESPONSE -peer1.org2.example.com | [9dd 01-05 02:51:15.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/Application/Org2MSP/Readers -orderer.example.com | [665 01-05 02:50:27.75 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 | [932 01-05 02:51:15.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/Orderer/OrdererOrg/Writers -orderer.example.com | [666 01-05 02:50:27.75 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 | [8a7 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bfe64ffc]handleGetState serial send RESPONSE -peer1.org2.example.com | [9de 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [667 01-05 02:50:27.75 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 | [933 01-05 02:51:15.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/Orderer/Capabilities -peer0.org1.example.com | [8a8 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Received message RESPONSE from shim -orderer.example.com | [668 01-05 02:50:27.75 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:47172 -peer1.org2.example.com | [9df 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [669 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47172: rpc error: code = Canceled desc = context canceled -peer0.org2.example.com | [934 01-05 02:51:15.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/Orderer/ConsensusType -peer0.org1.example.com | [8a9 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [66a 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer1.org2.example.com | [9e0 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [8aa 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bfe64ffc]before send -orderer.example.com | [66b 01-05 02:50:27.75 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 | [935 01-05 02:51:15.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/Orderer/BatchSize -peer1.org2.example.com | [9e1 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -orderer.example.com | [66d 01-05 02:50:27.75 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 | [8ab 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bfe64ffc]after send -peer1.org2.example.com | [9e2 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [66c 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47170: rpc error: code = Canceled desc = context canceled -peer0.org2.example.com | [936 01-05 02:51:15.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/Orderer/BatchTimeout -orderer.example.com | [66e 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [66f 01-05 02:50:27.75 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 | [9e3 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [937 01-05 02:51:15.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/Orderer/ChannelRestrictions -peer0.org1.example.com | [8ac 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bfe64ffc]Received RESPONSE, communicated (state:ready) -orderer.example.com | [670 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [671 01-05 02:50:27.75 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 | [938 01-05 02:51:15.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/Orderer/Writers -orderer.example.com | [672 01-05 02:50:27.75 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.org1.example.com | [8ad 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [bfe64ffc]GetState received payload RESPONSE -peer1.org2.example.com | [9e4 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [8ae 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [939 01-05 02:51:15.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/Orderer/BlockValidation -orderer.example.com | [673 01-05 02:50:27.75 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 | [8af 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Move state message COMPLETED -peer1.org2.example.com | [9e5 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [674 01-05 02:50:27.75 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 | [93a 01-05 02:51:15.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/Orderer/Admins -peer0.org1.example.com | [8b0 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [9e6 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [675 01-05 02:50:27.75 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 | [8b1 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]send state message COMPLETED -peer0.org2.example.com | [93b 01-05 02:51:15.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/Orderer/Readers -peer1.org2.example.com | [9e7 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [676 01-05 02:50:27.75 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 | [8b2 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Received message COMPLETED from shim -peer0.org2.example.com | [93c 01-05 02:51:15.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 -peer1.org2.example.com | [9e8 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [8b3 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [9e9 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [677 01-05 02:50:27.75 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.org2.example.com | [93d 01-05 02:51:15.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 -peer1.org2.example.com | [9ea 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [9eb 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [678 01-05 02:50:27.75 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 | [8b4 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [9ec 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [93e 01-05 02:51:15.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 -peer1.org2.example.com | [9ed 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [8b5 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1, channelID:businesschannel -peer1.org2.example.com | [9ee 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [679 01-05 02:50:27.75 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 | [93f 01-05 02:51:15.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 -peer1.org2.example.com | [9ef 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [8b6 01-05 02:51:04.22 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 | [940 01-05 02:51:15.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 | [9f0 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [67a 01-05 02:50:27.76 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 | [9f1 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [941 01-05 02:51:15.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 -peer1.org2.example.com | [9f2 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [9f3 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [67b 01-05 02:50:27.76 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 | [8b7 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [9f4 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [942 01-05 02:51:15.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 -peer1.org2.example.com | [9f5 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [67c 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [8b8 01-05 02:51:04.22 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 | [9f6 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/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 | [943 01-05 02:51:15.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/Org3MSP -peer0.org1.example.com | [8b9 01-05 02:51:04.22 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 [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -orderer.example.com | [67d 01-05 02:50:27.76 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 | [9f7 01-05 02:51:15.15 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 | [8ba 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [944 01-05 02:51:15.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/Org3MSP/MSP -orderer.example.com | [67e 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer1.org2.example.com | [9f8 01-05 02:51:15.15 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 | [945 01-05 02:51:15.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/Org3MSP/Admins -orderer.example.com | [67f 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer1.org2.example.com | [9f9 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [8bb 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [8bc 01-05 02:51:04.22 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 | [9fa 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [946 01-05 02:51:15.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/Org3MSP/Readers -orderer.example.com | [680 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [8bd 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel version: 1.1.0 -peer1.org2.example.com | [9fb 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [8be 01-05 02:51:04.22 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=bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1,syscc=true,proposal=0xc42031c9b0,canname=escc:1.1.0 -orderer.example.com | [681 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [947 01-05 02:51:15.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/Org3MSP/Writers -peer0.org1.example.com | [8bf 01-05 02:51:04.22 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 | [682 01-05 02:50:27.76 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 | [9fc 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [948 01-05 02:51:15.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/Org1MSP -peer0.org1.example.com | [8c0 01-05 02:51:04.22 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 | [683 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [949 01-05 02:51:15.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/Org1MSP/AnchorPeers -peer0.org1.example.com | [8c1 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer1.org2.example.com | [9fd 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [684 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -peer0.org1.example.com | [8c2 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [94a 01-05 02:51:15.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/Org1MSP/MSP -peer1.org2.example.com | [9fe 01-05 02:51:15.15 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 | [8c3 01-05 02:51:04.22 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 | [8c4 01-05 02:51:04.22 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 | [685 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org1.example.com | [8c5 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [9ff 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] -peer0.org2.example.com | [94b 01-05 02:51:15.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/Org1MSP/Writers -peer0.org1.example.com | [8c6 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Move state message TRANSACTION -peer0.org2.example.com | [94c 01-05 02:51:15.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/Org1MSP/Admins -orderer.example.com | [686 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org1.example.com | [8c7 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [a00 01-05 02:51:15.16 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{0xce, 0x93, 0x4f, 0xbd, 0x9e, 0x8f, 0x46, 0x9e, 0xe8, 0x99, 0xbc, 0xa0, 0x6c, 0x19, 0xb9, 0xe3, 0x95, 0x93, 0xe9, 0xa6, 0x5, 0xd5, 0x4b, 0x7f, 0x4e, 0x5d, 0xd1, 0x32, 0x6c, 0x50, 0x6f, 0x92} txOffsets= -peer0.org2.example.com | [94d 01-05 02:51:15.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/Org1MSP/Readers -peer0.org1.example.com | [8c8 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [687 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -peer1.org2.example.com | txId= locPointer=offset=71, bytesLength=19402 -peer0.org2.example.com | [94e 01-05 02:51:15.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 -peer0.org1.example.com | [8c9 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]sending state message TRANSACTION -peer1.org2.example.com | ] -orderer.example.com | [688 01-05 02:50:27.76 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 | [94f 01-05 02:51:15.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 -peer0.org1.example.com | [8ca 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Received message TRANSACTION from shim -orderer.example.com | [689 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e758 gate 1515120627763061000 evaluation starts -peer1.org2.example.com | [a01 01-05 02:51:15.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60381, bytesLength=19402] for tx ID: [] to index -peer0.org2.example.com | [950 01-05 02:51:15.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.org1.example.com | [8cb 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [a02 01-05 02:51:15.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60381, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [8cc 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bfe64ffc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [951 01-05 02:51:15.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 -orderer.example.com | [68a 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [8cd 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [952 01-05 02:51:15.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/OrdererAddresses -peer0.org1.example.com | [8ce 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [953 01-05 02:51:15.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 -peer0.org1.example.com | [8cf 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [a03 01-05 02:51:15.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=[81579], isChainEmpty=[false], lastBlockNumber=[7] -peer0.org2.example.com | [954 01-05 02:51:15.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 -peer0.org1.example.com | [8d0 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Move state message COMPLETED -peer0.org2.example.com | [955 01-05 02:51:15.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 -orderer.example.com | [68b 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [a04 01-05 02:51:15.18 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 | [8d1 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [956 01-05 02:51:15.23 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer1.org1.example.com:7051, PKIid:[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] isn't responsive: rpc error: code = Canceled desc = context canceled -peer1.org2.example.com | [a05 01-05 02:51:15.18 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 | [68c 01-05 02:50:27.76 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.org2.example.com | [957 01-05 02:51:15.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 -peer0.org1.example.com | [8d2 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]send state message COMPLETED -peer0.org2.example.com | [958 01-05 02:51:15.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 | [8d3 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Received message COMPLETED from shim -peer0.org1.example.com | [8d4 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [a06 01-05 02:51:15.18 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 | [8d5 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [a07 01-05 02:51:15.18 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 | [68d 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 principal matched by identity 0 -peer0.org2.example.com | [959 01-05 02:51:15.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 | [8d6 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1, channelID:businesschannel -peer1.org2.example.com | [a08 01-05 02:51:15.18 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 | [68e 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 78 3a e9 bc 4d 6f 93 e6 10 ac 7e 71 bb da 9f 43 |x:..Mo....~q...C| -peer0.org1.example.com | [8d7 01-05 02:51:04.22 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 | [a09 01-05 02:51:15.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 -orderer.example.com | 00000010 aa b7 dc ac ad c6 38 71 b0 ac 15 8d 4d e5 4c 74 |......8q....M.Lt| -peer0.org2.example.com | [95a 01-05 02:51:15.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 | [8d8 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [68f 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c 08 a7 68 2e c3 d6 b6 48 67 a7 69 |0D. |..h....Hg.i| -peer0.org2.example.com | [95b 01-05 02:51:15.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 -peer1.org2.example.com | [a0a 01-05 02:51:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org2.example.com | [95c 01-05 02:51:15.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 | [8d9 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 00000010 82 56 c7 82 d1 d5 b7 b7 44 b8 40 63 b4 27 e2 b4 |.V......D.@c.'..| -peer0.org2.example.com | [95d 01-05 02:51:15.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 | [a0b 01-05 02:51:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [8da 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -peer0.org2.example.com | [95e 01-05 02:51:15.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 -orderer.example.com | 00000020 48 ca 0d 65 02 20 13 49 28 fa 91 26 bd 95 c0 08 |H..e. .I(..&....| -peer0.org1.example.com | [8db 01-05 02:51:04.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54558) -peer1.org2.example.com | [a0c 01-05 02:51:15.18 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 | 00000030 98 cd 96 39 52 97 c2 d2 eb f5 35 fb de f3 03 39 |...9R.....5....9| -peer1.org2.example.com | [a0d 01-05 02:51:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions -peer0.org2.example.com | [95f 01-05 02:51:15.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 | [8dc 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54560 -orderer.example.com | 00000040 fd a8 ae e1 34 3b |....4;| -peer0.org2.example.com | [960 01-05 02:51:15.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [690 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [8dd 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b6b410 -peer1.org2.example.com | [a0e 01-05 02:51:15.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [961 01-05 02:51:15.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [691 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e758 gate 1515120627763061000 evaluation succeeds -peer1.org2.example.com | [a0f 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] -peer0.org1.example.com | [8de 01-05 02:51:04.35 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 | [962 01-05 02:51:15.24 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 | [a10 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [692 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [963 01-05 02:51:15.24 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 | [8df 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [a11 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [693 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [964 01-05 02:51:15.24 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{0xce, 0x93, 0x4f, 0xbd, 0x9e, 0x8f, 0x46, 0x9e, 0xe8, 0x99, 0xbc, 0xa0, 0x6c, 0x19, 0xb9, 0xe3, 0x95, 0x93, 0xe9, 0xa6, 0x5, 0xd5, 0x4b, 0x7f, 0x4e, 0x5d, 0xd1, 0x32, 0x6c, 0x50, 0x6f, 0x92} txOffsets= -peer1.org2.example.com | [a12 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [8e0 01-05 02:51:04.35 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 | [694 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | txId= locPointer=offset=71, bytesLength=19402 -peer0.org1.example.com | [8e1 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [a13 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [695 01-05 02:50:27.76 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 | [8e2 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [a14 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +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 | ] +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 | 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 +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 +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 +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 +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 +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 +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 +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 +orderer.example.com | R0L5Jr8878bLU6IcEA== +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 peer0.org2.example.com | ] -peer1.org2.example.com | [a15 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [696 01-05 02:50:27.76 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 | [8e3 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42031d590, header 0xc421b6b440 -peer0.org2.example.com | [965 01-05 02:51:15.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60381, bytesLength=19402] for tx ID: [] to index -orderer.example.com | [697 01-05 02:50:27.76 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 | [a16 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [698 01-05 02:50:27.76 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 | [8e4 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [966 01-05 02:51:15.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60381, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [8e5 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 -peer1.org2.example.com | [a17 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [699 01-05 02:50:27.76 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 | [967 01-05 02:51:15.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=[81579], isChainEmpty=[false], lastBlockNumber=[7] -peer0.org1.example.com | [8e6 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -peer1.org2.example.com | [a18 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [69a 01-05 02:50:27.76 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 | [968 01-05 02:51:15.25 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 | [8e7 01-05 02:51:04.35 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 | [69b 01-05 02:50:27.76 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 | [a19 01-05 02:51:15.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [969 01-05 02:51:15.25 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 | [8e8 01-05 02:51:04.35 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 = [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -orderer.example.com | [69c 01-05 02:50:27.76 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 | [96a 01-05 02:51:15.25 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 | [8e9 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel -orderer.example.com | [69d 01-05 02:50:27.76 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 | [96b 01-05 02:51:15.25 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 | [8ea 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel version: 1.1.0 -peer0.org2.example.com | [96c 01-05 02:51:15.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -orderer.example.com | [69e 01-05 02:50:27.76 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 | [96d 01-05 02:51:15.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | [69f 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [8eb 01-05 02:51:04.36 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=aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166,syscc=true,proposal=0xc42031d590,canname=lscc:1.1.0 -peer0.org2.example.com | [96e 01-05 02:51:15.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[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 | [96f 01-05 02:51:15.25 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 | [8ec 01-05 02:51:04.36 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 | [6a0 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [970 01-05 02:51:15.25 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 | [6a1 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [8ed 01-05 02:51:04.36 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 | [971 01-05 02:51:15.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions -peer0.org1.example.com | [8ee 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -peer0.org2.example.com | [972 01-05 02:51:15.25 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 | [6a2 01-05 02:50:27.76 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 | [8ef 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [8f0 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [6a3 01-05 02:50:27.76 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 | [973 01-05 02:51:15.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 [7] -peer0.org1.example.com | [8f1 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [6a4 01-05 02:50:27.76 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 | [974 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [8f2 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [8f3 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Move state message TRANSACTION -orderer.example.com | [6a5 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [975 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [8f4 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [976 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [6a6 01-05 02:50:27.76 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 | [8f5 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [977 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [6a7 01-05 02:50:27.76 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 | [978 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [8f6 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]sending state message TRANSACTION -peer0.org2.example.com | [979 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [8f7 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Received message TRANSACTION from shim -peer0.org2.example.com | [97a 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [8f8 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [97b 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [6a8 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [8f9 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [aeb3e098]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [97c 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [6a9 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [8fa 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [aeb3e098]Sending GET_STATE -orderer.example.com | [6aa 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [8fb 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Received message GET_STATE from shim -peer0.org2.example.com | [97d 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [97e 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[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]] -peer0.org1.example.com | [8fc 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | [6ab 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [97f 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: , PKI-ID: [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], Metadata: [] -peer0.org1.example.com | [8fd 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [aeb3e098]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [980 01-05 02:51:15.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting -orderer.example.com | [6ac 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [8fe 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [6ad 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6ae 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [8ff 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [aeb3e098] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [900 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [6af 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [901 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [aeb3e098]Got state. Sending RESPONSE -peer0.org1.example.com | [902 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [aeb3e098]handleGetState serial send RESPONSE -orderer.example.com | [6b0 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [903 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Received message RESPONSE from shim -peer0.org1.example.com | [904 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [6b1 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [905 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [aeb3e098]before send -orderer.example.com | [6b2 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [906 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [aeb3e098]after send -orderer.example.com | [6b3 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [907 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [aeb3e098]Received RESPONSE, communicated (state:ready) -orderer.example.com | [6b4 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6b5 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6b6 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [908 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [aeb3e098]GetState received payload RESPONSE -peer0.org1.example.com | [909 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Transaction completed. Sending COMPLETED -orderer.example.com | [6b7 01-05 02:50:27.77 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 | [90a 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Move state message COMPLETED -orderer.example.com | [6b8 01-05 02:50:27.77 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 | [90b 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [6b9 01-05 02:50:27.77 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 | [90c 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]send state message COMPLETED -orderer.example.com | [6ba 01-05 02:50:27.77 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 | [6bb 01-05 02:50:27.77 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 | [90d 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Received message COMPLETED from shim -peer0.org1.example.com | [90e 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [90f 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166]HandleMessage- COMPLETED. Notify -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [910 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166, channelID:businesschannel -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -peer0.org1.example.com | [911 01-05 02:51:04.36 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 | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [912 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [913 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -peer0.org1.example.com | [914 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -peer0.org1.example.com | [915 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [916 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -peer0.org1.example.com | [917 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -peer0.org1.example.com | [918 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel version: 1.1.0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [919 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166,syscc=true,proposal=0xc42031d590,canname=escc:1.1.0 -peer0.org1.example.com | [91a 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [6bc 01-05 02:50:27.77 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 -peer0.org1.example.com | [91b 01-05 02:51:04.37 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 | [91c 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [91d 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [91e 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [91f 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [920 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [921 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Move state message TRANSACTION -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [922 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org1.example.com | [923 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [924 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]sending state message TRANSACTION -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [925 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Received message TRANSACTION from shim -peer0.org1.example.com | [926 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer0.org1.example.com | [927 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [aeb3e098]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [928 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [6bd 01-05 02:50:27.77 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 | [929 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [6be 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [92a 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Transaction completed. Sending COMPLETED -orderer.example.com | [6bf 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [92b 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Move state message COMPLETED -peer0.org1.example.com | [92c 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [6c0 01-05 02:50:27.77 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 | [92d 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]send state message COMPLETED -peer0.org1.example.com | [92e 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Received message COMPLETED from shim -peer0.org1.example.com | [92f 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [6c1 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [930 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166]HandleMessage- COMPLETED. Notify -orderer.example.com | [6c2 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6c3 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [931 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166, channelID:businesschannel -orderer.example.com | [6c4 01-05 02:50:27.77 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 | [6c5 01-05 02:50:27.77 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 | [6c6 01-05 02:50:27.77 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 | [6c7 01-05 02:50:27.77 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 | [932 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [6c8 01-05 02:50:27.77 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 | [6c9 01-05 02:50:27.77 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 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -peer0.org1.example.com | [933 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [934 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -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 | [6ca 01-05 02:50:27.77 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 | [935 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -orderer.example.com | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -peer0.org1.example.com | [936 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54560) -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [937 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54562 -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -orderer.example.com | R0L5Jr8878bLU6IcEA== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [938 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420368fc0 -orderer.example.com | [6cb 01-05 02:50:27.77 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 | [6cc 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [6cd 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [939 01-05 02:51:04.64 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 | [6ce 01-05 02:50:27.77 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 | [93a 01-05 02:51:04.64 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 02:51:04.64 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 | [6cf 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [93c 01-05 02:51:04.64 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 02:51:04.64 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 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228a2780, header 0xc420368ff0 -peer0.org1.example.com | [93f 01-05 02:51:04.64 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 | [6d0 01-05 02:50:27.77 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 | [940 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 -peer0.org1.example.com | [941 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -peer0.org1.example.com | [942 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [943 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -peer0.org1.example.com | [944 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel -peer0.org1.example.com | [945 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [946 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374,syscc=true,proposal=0xc4228a2780,canname=lscc:1.1.0 -peer0.org1.example.com | [947 01-05 02:51:04.65 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 | [6d1 01-05 02:50:27.77 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 | [948 01-05 02:51:04.65 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 | [949 01-05 02:51:04.65 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 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [6d2 01-05 02:50:27.77 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 | [94b 01-05 02:51:04.65 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 | [6d3 01-05 02:50:27.77 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 | [94c 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [6d4 01-05 02:50:27.77 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 | [94d 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [6d5 01-05 02:50:27.78 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 -peer0.org1.example.com | [94e 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Move state message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [94f 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [950 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [951 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]sending state message TRANSACTION -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [952 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Received message TRANSACTION from shim -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [953 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [954 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c8383a03]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [955 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c8383a03]Sending GET_STATE -orderer.example.com | BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -orderer.example.com | lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [956 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Received message GET_STATE from shim -peer0.org1.example.com | [957 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -peer0.org1.example.com | [958 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c8383a03]Received GET_STATE, invoking get state from ledger -orderer.example.com | FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -peer0.org1.example.com | [959 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -orderer.example.com | oQmWQsjpiQ== -peer0.org1.example.com | [95a 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8383a03] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [95b 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | [6d6 01-05 02:50:27.78 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 | [95c 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8383a03]Got state. Sending RESPONSE -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [95d 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c8383a03]handleGetState serial send RESPONSE -peer0.org1.example.com | [95e 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Received message RESPONSE from shim -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [95f 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [960 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c8383a03]before send -peer0.org1.example.com | [961 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c8383a03]after send -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [963 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c8383a03]GetState received payload RESPONSE -peer0.org1.example.com | [964 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Transaction completed. Sending COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | [962 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c8383a03]Received RESPONSE, communicated (state:ready) -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org1.example.com | [965 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Move state message COMPLETED -peer0.org1.example.com | [966 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org1.example.com | [967 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]send state message COMPLETED -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -peer0.org1.example.com | [968 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Received message COMPLETED from shim -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -peer0.org1.example.com | [969 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [96a 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374]HandleMessage- COMPLETED. Notify -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [96b 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374, channelID:businesschannel -orderer.example.com | [6d7 01-05 02:50:27.78 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 | [96c 01-05 02:51:04.65 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 | [6d8 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer0.org1.example.com | [96d 01-05 02:51:04.65 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 02:51: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 -orderer.example.com | [6d9 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [96f 01-05 02:51: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 [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -orderer.example.com | [6da 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [6db 01-05 02:50:27.78 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 | [970 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [6dc 01-05 02:50:27.78 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 | [971 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | [6dd 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer0.org1.example.com | [972 01-05 02:51:04.65 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 | [973 01-05 02:51:04.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel version: 1.1.0 -orderer.example.com | [6de 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -peer0.org1.example.com | [974 01-05 02:51:04.66 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=c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374,syscc=true,proposal=0xc4228a2780,canname=escc:1.1.0 -peer0.org1.example.com | [975 01-05 02:51:04.66 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 | [6df 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org1.example.com | [976 01-05 02:51:04.66 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 | [977 01-05 02:51:04.66 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 | [6e0 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer0.org1.example.com | [978 01-05 02:51:04.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [6e1 01-05 02:50:27.78 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 | [979 01-05 02:51:04.66 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 | [6e2 01-05 02:50:27.78 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 | [97a 01-05 02:51:04.67 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 | [97b 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [6e3 01-05 02:50:27.78 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 | [97c 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Move state message TRANSACTION -orderer.example.com | [6e4 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [6e5 01-05 02:50:27.78 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 | [97d 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [6e6 01-05 02:50:27.78 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 | [97e 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [6e7 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [6e8 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer0.org1.example.com | [97f 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]sending state message TRANSACTION -orderer.example.com | [6e9 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [6ea 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [980 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Received message TRANSACTION from shim -peer0.org1.example.com | [981 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [6eb 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [982 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c8383a03]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [6ec 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [983 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [6ed 01-05 02:50:27.78 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 | [984 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [6ee 01-05 02:50:27.78 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 | [985 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Transaction completed. Sending COMPLETED -orderer.example.com | [6ef 01-05 02:50:27.78 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 | [986 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Move state message COMPLETED -orderer.example.com | [6f0 01-05 02:50:27.78 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 | [987 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [6f1 01-05 02:50:27.78 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 | [6f2 01-05 02:50:27.78 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 | [988 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]send state message COMPLETED -orderer.example.com | [6f3 01-05 02:50:27.78 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 | [989 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Received message COMPLETED from shim -peer0.org1.example.com | [98a 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [6f4 01-05 02:50:27.78 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 | [6f5 01-05 02:50:27.78 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 | [98b 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374]HandleMessage- COMPLETED. Notify -orderer.example.com | [6f6 01-05 02:50:27.78 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 | [98c 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374, channelID:businesschannel -orderer.example.com | [6f7 01-05 02:50:27.78 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 | [98d 01-05 02:51:04.67 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 | [6f8 01-05 02:50:27.78 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 | [98e 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [6f9 01-05 02:50:27.78 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 | [98f 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [6fa 01-05 02:50:27.78 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 | [6fb 01-05 02:50:27.78 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 | [6fc 01-05 02:50:27.78 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 | [990 01-05 02:51:04.67 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 [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -orderer.example.com | [6fd 01-05 02:50:27.78 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 | [991 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54562) -orderer.example.com | [6fe 01-05 02:50:27.78 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 | [992 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54564 -orderer.example.com | [6ff 01-05 02:50:27.78 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 | [993 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224f46f0 -orderer.example.com | [700 01-05 02:50:27.78 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 | [701 01-05 02:50:27.78 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 | [994 01-05 02:51:04.88 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 | [702 01-05 02:50:27.78 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 | [703 01-05 02:50:27.78 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 | [995 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [704 01-05 02:50:27.78 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 | [996 01-05 02:51:04.88 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 | [705 01-05 02:50:27.78 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 | [997 01-05 02:51:04.88 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 | [706 01-05 02:50:27.78 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 | [998 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [707 01-05 02:50:27.79 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 | [708 01-05 02:50:27.79 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 | [999 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42373ecd0, header 0xc4224f4720 -peer0.org1.example.com | [99a 01-05 02:51:04.88 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 | [709 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [99b 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 -orderer.example.com | [70a 01-05 02:50:27.79 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 | [99c 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -orderer.example.com | [70b 01-05 02:50:27.79 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 | [99d 01-05 02:51:04.88 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 | [70c 01-05 02:50:27.79 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 | [99e 01-05 02:51:04.88 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 = [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -orderer.example.com | [70d 01-05 02:50:27.79 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 | [99f 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel -orderer.example.com | [70e 01-05 02:50:27.79 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 | [70f 01-05 02:50:27.79 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 | [9a0 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel version: 1.1.0 -orderer.example.com | [710 01-05 02:50:27.79 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 | [9a1 01-05 02:51:04.88 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=349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8,syscc=true,proposal=0xc42373ecd0,canname=lscc:1.1.0 -orderer.example.com | [711 01-05 02:50:27.79 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 | [9a2 01-05 02:51:04.88 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 | [712 01-05 02:50:27.79 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 | [9a3 01-05 02:51:04.88 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 | [9a4 01-05 02:51:04.88 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 | [713 01-05 02:50:27.79 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 | [714 01-05 02:50:27.79 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 | [9a5 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [715 01-05 02:50:27.79 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 | [9a6 01-05 02:51:04.88 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 | [716 01-05 02:50:27.79 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 | [9a7 01-05 02:51:04.88 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 | [717 01-05 02:50:27.79 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 | [9a8 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [9a9 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Move state message TRANSACTION -orderer.example.com | [718 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org1.example.com | [9aa 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [719 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [9ab 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [71a 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [9ac 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]sending state message TRANSACTION -orderer.example.com | [71b 01-05 02:50:27.79 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 | [9ad 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Received message TRANSACTION from shim -orderer.example.com | [71c 01-05 02:50:27.79 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 | [9ae 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [71d 01-05 02:50:27.79 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 | [9af 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [349f981b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [71e 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [9b0 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Transaction completed. Sending COMPLETED -orderer.example.com | [71f 01-05 02:50:27.79 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 | [9b1 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Move state message COMPLETED -orderer.example.com | [720 01-05 02:50:27.79 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 | [9b2 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [721 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer0.org1.example.com | [9b3 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]send state message COMPLETED -peer0.org1.example.com | [9b4 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Received message COMPLETED from shim -orderer.example.com | [722 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [9b5 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [723 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org1.example.com | [9b6 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [9b7 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8, channelID:businesschannel -orderer.example.com | [724 01-05 02:50:27.79 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 | [9b8 01-05 02:51:04.89 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 | [9b9 01-05 02:51:04.89 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 02:51:04.89 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 02:51:04.89 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 [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -peer0.org1.example.com | [9bc 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [725 01-05 02:50:27.79 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 | [9bd 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [9be 01-05 02:51:04.89 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 | [9bf 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [9c0 01-05 02:51: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=349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8,syscc=true,proposal=0xc42373ecd0,canname=escc:1.1.0 -orderer.example.com | [726 01-05 02:50:27.79 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 | [9c1 01-05 02:51: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.org1.example.com | [9c2 01-05 02:51:04.89 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 | [9c3 01-05 02:51: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 -peer0.org1.example.com | [9c4 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [9c5 01-05 02:51: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... -peer0.org1.example.com | [9c6 01-05 02:51: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 | [727 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [9c7 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [9c8 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Move state message TRANSACTION -orderer.example.com | [728 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [9c9 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [9ca 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [9cb 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]sending state message TRANSACTION -orderer.example.com | [729 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [72a 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [9cc 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Received message TRANSACTION from shim -orderer.example.com | [72b 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F5B411BA220CF4DBAFCEBB2BD1368C5F -peer0.org1.example.com | [9cd 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [72c 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: D6A2B27A8ED54786EDE144E5D979C6C510634D064A0287D89A27F8FB22CD705F -peer0.org1.example.com | [9ce 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [349f981b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [72d 01-05 02:50:27.79 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 -peer0.org1.example.com | [9cf 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [72e 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [9d0 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [72f 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [9d1 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Transaction completed. Sending COMPLETED -orderer.example.com | [730 01-05 02:50:27.79 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 | [9d2 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Move state message COMPLETED -peer0.org1.example.com | [9d3 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [9d4 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]send state message COMPLETED -peer0.org1.example.com | [9d5 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Received message COMPLETED from shim -orderer.example.com | [731 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [9d6 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [732 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [733 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...F5B411BA220CF4DBAFCEBB2BD1368C5F -orderer.example.com | [734 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 555CB5E9EE56501BC2BD5770B55ADB6F2FA14D5673B15F289516C2243B3699B5 -peer0.org1.example.com | [9d7 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8]HandleMessage- COMPLETED. Notify -orderer.example.com | [735 01-05 02:50:27.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x41, 0x81, 0xd6, 0x8a, 0xc7, 0x9d, 0xc1, 0xe7, 0x3d, 0x11, 0x42, 0x46, 0x49, 0x23, 0x2f, 0x26, 0x59, 0xc7, 0xc0, 0xda, 0x50, 0x2c, 0xb, 0xcc, 0xf4, 0x52, 0xeb, 0x97, 0x30, 0x45, 0x3f, 0xd9} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=12151 -orderer.example.com | ] -peer0.org1.example.com | [9d8 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8, channelID:businesschannel -orderer.example.com | [736 01-05 02:50:27.80 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] -orderer.example.com | [737 01-05 02:50:27.80 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -orderer.example.com | [738 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [739 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:37560 -orderer.example.com | [73a 01-05 02:50:30.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.4:37560 -orderer.example.com | [73b 01-05 02:50:30.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 == -peer0.org1.example.com | [9d9 01-05 02:51: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 | [73c 01-05 02:50:30.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 | [73d 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer0.org1.example.com | [9da 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [73e 01-05 02:50:30.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 | [73f 01-05 02:50:30.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 | [740 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [9db 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [741 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [9dc 01-05 02:51: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 [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw -orderer.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 -orderer.example.com | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF -peer0.org1.example.com | [9dd 01-05 02:51: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:54564) -orderer.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk -orderer.example.com | oOWGb8BDg2Tnm3LS -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [742 01-05 02:50:30.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 0xc4201388a0 gate 1515120630537296100 evaluation starts -orderer.example.com | [743 01-05 02:50:30.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 0xc4201388a0 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [9de 01-05 02:51:05.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54566 -orderer.example.com | [744 01-05 02:50:30.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 0xc4201388a0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [9df 01-05 02:51:05.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422660870 -peer0.org1.example.com | [9e0 01-05 02:51:05.10 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 | [745 01-05 02:50:30.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 0xc4201388a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [746 01-05 02:50:30.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 0xc4201388a0 principal evaluation fails -orderer.example.com | [747 01-05 02:50:30.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 0xc4201388a0 gate 1515120630537296100 evaluation fails -peer0.org1.example.com | [9e1 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [748 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [749 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [9e2 01-05 02:51:05.10 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 | [74a 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [74b 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -peer0.org1.example.com | [9e3 01-05 02:51:05.10 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 | [74c 01-05 02:50:30.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 -peer0.org1.example.com | [9e4 01-05 02:51:05.10 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 | [9e5 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c40d70, header 0xc4226608a0 -orderer.example.com | [74d 01-05 02:50:30.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 == -peer0.org1.example.com | [9e6 01-05 02:51:05.10 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 | [74e 01-05 02:50:30.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 -peer0.org1.example.com | [9e7 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 -peer0.org1.example.com | [9e8 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -orderer.example.com | [74f 01-05 02:50:30.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 == -peer0.org1.example.com | [9e9 01-05 02:51:05.10 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 | [750 01-05 02:50:30.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 0xc4201388b0 gate 1515120630538747700 evaluation starts -peer0.org1.example.com | [9ea 01-05 02:51:05.10 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 = [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -orderer.example.com | [751 01-05 02:50:30.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 0xc4201388b0 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [9eb 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel -orderer.example.com | [752 01-05 02:50:30.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 0xc4201388b0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [9ec 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel version: 1.1.0 -orderer.example.com | [753 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer0.org1.example.com | [9ed 01-05 02:51:05.10 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=d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445,syscc=true,proposal=0xc421c40d70,canname=lscc:1.1.0 -orderer.example.com | [754 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [9ee 01-05 02:51:05.10 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 | [755 01-05 02:50:30.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 0xc4201388b0 principal matched by identity 0 -orderer.example.com | [756 01-05 02:50:30.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 15 9a 88 99 b5 a9 f4 86 d0 1d d8 13 35 3e dd |.............5>.| -peer0.org1.example.com | [9ef 01-05 02:51:05.10 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 02:51:05.10 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 | 00000010 0a b4 47 09 02 81 6a 88 fd 3d 99 7b da db d3 c7 |..G...j..=.{....| -peer0.org1.example.com | [9f1 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [757 01-05 02:50:30.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 45 02 21 00 97 41 cf 8b 0a 65 0c a9 ca 35 0f |0E.!..A...e...5.| -orderer.example.com | 00000010 65 36 ef f7 25 2e a8 3e 0b 7b 9c d0 3c e2 4b 4f |e6..%..>.{..<.KO| -peer0.org1.example.com | [9f2 01-05 02:51:05.10 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 | 00000020 a8 75 37 49 e4 02 20 23 1b e4 e3 81 f1 cf 0b 83 |.u7I.. #........| -peer0.org1.example.com | [9f3 01-05 02:51:05.10 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 | 00000030 93 29 14 a8 10 c8 25 ed ad 9e 38 ed 30 4c c3 26 |.)....%...8.0L.&| -peer0.org1.example.com | [9f4 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 00000040 66 c2 c5 43 f8 06 a3 |f..C...| -orderer.example.com | [758 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201388b0 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [9f5 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Move state message TRANSACTION -orderer.example.com | [759 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201388b0 gate 1515120630538747700 evaluation succeeds -orderer.example.com | [75a 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [9f6 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [75b 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [75c 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer0.org1.example.com | [9f7 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [75d 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [75e 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org1.example.com | [9f8 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]sending state message TRANSACTION -orderer.example.com | [75f 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org1.example.com | [9f9 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message TRANSACTION from shim -orderer.example.com | [760 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b55f00) start: > stop: > from 172.18.0.4:37560 -peer0.org1.example.com | [9fa 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [9fb 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8a7b15b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [761 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -peer0.org1.example.com | [9fc 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [d8a7b15b]Sending GET_STATE_BY_RANGE -orderer.example.com | [762 01-05 02:50:30.54 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 | [9fd 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message GET_STATE_BY_RANGE from shim -orderer.example.com | [763 01-05 02:50:30.54 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 | [9fe 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -orderer.example.com | [764 01-05 02:50:30.54 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 | [9ff 01-05 02:51:05.11 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 | [a00 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -orderer.example.com | [765 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -peer0.org1.example.com | [a01 01-05 02:51:05.11 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 | [766 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -peer0.org1.example.com | [a03 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -orderer.example.com | [767 01-05 02:50:30.54 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 | [768 01-05 02:50:30.54 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 | [a02 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [769 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -peer0.org1.example.com | [a04 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -orderer.example.com | [76a 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -peer0.org1.example.com | [a05 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8a7b15b]handleGetStateByRange serial send RESPONSE -orderer.example.com | [76b 01-05 02:50:30.54 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 | [76c 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [a06 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message RESPONSE from shim -orderer.example.com | [76d 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.2:38300 -orderer.example.com | [76e 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.2:38300 -peer0.org1.example.com | [a07 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | [76f 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [a08 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]before send -orderer.example.com | [770 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [a09 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]after send -orderer.example.com | [771 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer0.org1.example.com | [a0a 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8a7b15b]Received RESPONSE, communicated (state:ready) -orderer.example.com | [772 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [a0b 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [d8a7b15b]Received RESPONSE. Successfully got range -orderer.example.com | [773 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer0.org1.example.com | [a0c 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [d8a7b15b]Sending QUERY_STATE_CLOSE -orderer.example.com | [774 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [775 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [a0d 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message QUERY_STATE_CLOSE from shim -orderer.example.com | MIICGjCCAcCgAwIBAgIRAPlZcLcMzfzgE68ZzSaaSeYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [a0e 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [a0f 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -peer0.org1.example.com | [a10 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [a11 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [a12 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -peer0.org1.example.com | [a13 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8a7b15b]handleQueryStateClose serial send RESPONSE -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIsTFoftFSbhQW3yKTX+bQC+Ry/3z9tx -orderer.example.com | r/X846QAFI3FX4DI5Bg1ICvwRzTFDa1LBkuYhiVkFYf5Q6S2oXFTAm6jTTBLMA4G -peer0.org1.example.com | [a14 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message RESPONSE from shim -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -orderer.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Mu6 -peer0.org1.example.com | [a15 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | IJy8t//KkpCBNH4c9Mk+aUiVWxtwHocE8RGG6wIgV0wXUAj7zF1kM8R0oHPeIjO1 -orderer.example.com | dblSJ0Unez2++mFCUWE= -peer0.org1.example.com | [a16 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]before send -peer0.org1.example.com | [a17 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]after send -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [a18 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8a7b15b]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [a19 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [d8a7b15b]Received RESPONSE. Successfully got range -orderer.example.com | [776 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120631004244600 evaluation starts -orderer.example.com | [777 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [a1a 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Transaction completed. Sending COMPLETED -orderer.example.com | [778 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [a1b 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Move state message COMPLETED -orderer.example.com | [779 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -peer0.org1.example.com | [a1c 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [77a 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 principal evaluation fails -orderer.example.com | [77b 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120631004244600 evaluation fails -peer0.org1.example.com | [a1d 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]send state message COMPLETED -peer0.org1.example.com | [a1e 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message COMPLETED from shim -orderer.example.com | [77c 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [a1f 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [a20 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445]HandleMessage- COMPLETED. Notify -orderer.example.com | [77d 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [a21 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445, channelID:businesschannel -orderer.example.com | [77e 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [77f 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -peer0.org1.example.com | [a22 01-05 02:51:05.11 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 | [780 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -peer0.org1.example.com | [a23 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [781 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [a24 01-05 02:51:05.11 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 | [782 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [a25 01-05 02:51:05.11 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 [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -peer0.org1.example.com | [a26 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [783 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer0.org1.example.com | [a27 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [a28 01-05 02:51:05.11 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 | [784 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d0 gate 1515120631006983300 evaluation starts -peer0.org1.example.com | [a29 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel version: 1.1.0 -orderer.example.com | [785 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [a2a 01-05 02:51:05.11 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=d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445,syscc=true,proposal=0xc421c40d70,canname=escc:1.1.0 -peer0.org1.example.com | [a2b 01-05 02:51:05.11 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 | [786 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [787 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -peer0.org1.example.com | [a2c 01-05 02:51:05.11 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 | [788 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 principal evaluation fails -orderer.example.com | [789 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d0 gate 1515120631006983300 evaluation fails -orderer.example.com | [78a 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [78b 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [a2d 01-05 02:51:05.11 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 | [78c 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [78d 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1515120631009488400 evaluation starts -orderer.example.com | [78e 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [a2e 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [78f 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [a2f 01-05 02:51:05.11 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 02:51:05.11 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 | [a31 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [790 01-05 02:50:31.01 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 | [a32 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Move state message TRANSACTION -peer0.org1.example.com | [a33 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [a34 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [791 01-05 02:50:31.01 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 | [a35 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]sending state message TRANSACTION -peer0.org1.example.com | [a36 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message TRANSACTION from shim -peer0.org1.example.com | [a37 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [a38 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8a7b15b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [a39 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | [792 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal matched by identity 0 -peer0.org1.example.com | [a3a 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [a3b 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [a3c 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Move state message COMPLETED -peer0.org1.example.com | [a3d 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [a3e 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]send state message COMPLETED -peer0.org1.example.com | [a3f 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message COMPLETED from shim -orderer.example.com | [793 01-05 02:50:31.01 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 9b fd 25 8d e1 31 d1 69 9e 5e 7e 3d a8 a9 c7 4a |..%..1.i.^~=...J| -peer0.org1.example.com | [a40 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [a41 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [a42 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445, channelID:businesschannel -peer0.org1.example.com | [a43 01-05 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [a45 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [a46 01-05 02:51:05.11 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 [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -orderer.example.com | 00000010 66 ba 46 46 eb 90 cd bc f7 0b f9 86 63 3b a1 bc |f.FF........c;..| -peer0.org1.example.com | [a47 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54566) -peer0.org1.example.com | [a48 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54568 -orderer.example.com | [794 01-05 02:50:31.01 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 09 3f 1e a4 f1 db 5f 13 bf b5 fa 34 |0D. .?...._....4| -peer0.org1.example.com | [a49 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422840540 -peer0.org1.example.com | [a4a 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 00000010 75 2d 5c e2 c3 c7 65 7c c5 75 d9 d8 d2 94 5c c4 |u-\...e|.u....\.| -peer0.org1.example.com | [a4b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 00000020 fb 8d 68 c7 02 20 17 bf 6b 7c b7 15 b6 41 c0 5b |..h.. ..k|...A.[| -peer0.org1.example.com | [a4c 01-05 02:51:05.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} -orderer.example.com | 00000030 59 9f ef 8f e9 49 88 95 69 67 a6 44 c4 54 ea 8d |Y....I..ig.D.T..| -peer0.org1.example.com | [a4d 01-05 02:51:05.52 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 86 ce 8c b2 fa 61 |.....a| -peer0.org1.example.com | [a4e 01-05 02:51:05.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 | [a4f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c41a40, header 0xc422840570 -orderer.example.com | [795 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [a50 01-05 02:51:05.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:"qscc" -orderer.example.com | [796 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1515120631009488400 evaluation succeeds -peer0.org1.example.com | [a51 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 -orderer.example.com | [797 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [798 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [a52 01-05 02:51:05.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 = [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -orderer.example.com | [799 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer0.org1.example.com | [a53 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [79a 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [a54 01-05 02:51:05.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 = [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -orderer.example.com | [79b 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org1.example.com | [a55 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel -orderer.example.com | [79c 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org1.example.com | [a56 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [a57 01-05 02:51:05.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=qscc,version=1.1.0,txid=cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72,syscc=true,proposal=0xc421c41a40,canname=qscc:1.1.0 -orderer.example.com | [79d 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b65ae0) start: > stop: > from 172.18.0.2:38300 -peer0.org1.example.com | [a58 01-05 02:51:05.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) : qscc:1.1.0 -orderer.example.com | [79e 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -peer0.org1.example.com | [a59 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [79f 01-05 02:50:31.01 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 | [a5a 01-05 02:51:05.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: qscc:1.1.0 -orderer.example.com | [7a0 01-05 02:50:31.01 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 | [a5b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [7a1 01-05 02:50:31.01 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]} -orderer.example.com | [7a2 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -peer0.org1.example.com | [a5c 01-05 02:51:05.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 | [7a3 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65ae0) for 172.18.0.2:38300 -peer0.org1.example.com | [a5d 01-05 02:51:05.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 | [7a4 01-05 02:50:31.01 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 | [a5e 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [a5f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Move state message TRANSACTION -orderer.example.com | [7a5 01-05 02:50:31.01 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 | [a60 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [a61 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [7a6 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -peer0.org1.example.com | [a62 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]sending state message TRANSACTION -peer0.org1.example.com | [a63 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Received message TRANSACTION from shim -peer0.org1.example.com | [a64 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [7a7 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65ae0) for 172.18.0.2:38300 -peer0.org1.example.com | [a65 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cee46bbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | [7a8 01-05 02:50:31.02 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-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -orderer.example.com | [7a9 01-05 02:50:31.22 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-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Transaction completed. Sending COMPLETED -orderer.example.com | [7aa 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:51548 -orderer.example.com | [7ab 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:51548 -peer0.org1.example.com | [a68 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Move state message COMPLETED -orderer.example.com | [7ac 01-05 02:50:31.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 | [a69 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [a6a 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]send state message COMPLETED -peer0.org1.example.com | [a6b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Received message COMPLETED from shim -orderer.example.com | [7ad 01-05 02:50:31.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 -peer0.org1.example.com | [a6c 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [a6d 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72]HandleMessage- COMPLETED. Notify -orderer.example.com | [7ae 01-05 02:50:31.23 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 | [7af 01-05 02:50:31.23 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 | [a6e 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72, channelID:businesschannel -orderer.example.com | [7b0 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer0.org1.example.com | [a6f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [a70 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | [7b1 01-05 02:50:31.23 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 | [7b2 01-05 02:50:31.23 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 | MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [a71 01-05 02:51:05.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 | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 -peer0.org1.example.com | [a72 01-05 02:51:05.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 [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -peer0.org1.example.com | [a73 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [a74 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [a75 01-05 02:51:05.52 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-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [a77 01-05 02:51:05.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=cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72,syscc=true,proposal=0xc421c41a40,canname=escc:1.1.0 -peer0.org1.example.com | [a78 01-05 02:51:05.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.org1.example.com | [a79 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [a7a 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -peer0.org1.example.com | [a7b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [a7c 01-05 02:51:05.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... -peer0.org1.example.com | [a7d 01-05 02:51:05.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... -peer0.org1.example.com | [a7e 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd -peer0.org1.example.com | [a7f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Move state message TRANSACTION -peer0.org1.example.com | [a80 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G -peer0.org1.example.com | [a81 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [a82 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]sending state message TRANSACTION -peer0.org1.example.com | [a83 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Received message TRANSACTION from shim -peer0.org1.example.com | [a84 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [a85 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cee46bbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [a86 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -peer0.org1.example.com | [a87 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [a88 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Transaction completed. Sending COMPLETED -orderer.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U -peer0.org1.example.com | [a89 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Move state message COMPLETED -peer0.org1.example.com | [a8a 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [a8b 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]send state message COMPLETED -peer0.org1.example.com | [a8c 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Received message COMPLETED from shim -orderer.example.com | V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB -peer0.org1.example.com | [a8d 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | IMM+3uC8p/M1qCSaOiQ= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7b3 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e198 gate 1515120631233200700 evaluation starts -orderer.example.com | [7b4 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [a8e 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72]HandleMessage- COMPLETED. Notify -orderer.example.com | [7b5 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [7b6 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [7b7 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 principal evaluation fails -peer0.org1.example.com | [a8f 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72, channelID:businesschannel -orderer.example.com | [7b8 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e198 gate 1515120631233200700 evaluation fails -peer0.org1.example.com | [a90 01-05 02:51:05.53 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 | [7b9 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [7ba 01-05 02:50:31.23 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 | [7bb 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -peer0.org1.example.com | [a91 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [7bc 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [7bd 01-05 02:50:31.23 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 | [7be 01-05 02:50:31.23 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 | [7bf 01-05 02:50:31.23 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 | [a92 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [7c0 01-05 02:50:31.23 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 | [a93 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -peer0.org1.example.com | [a94 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54568) -orderer.example.com | [7c1 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120631237007500 evaluation starts -orderer.example.com | [7c2 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [a95 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -peer0.org1.example.com | [a96 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -orderer.example.com | [7c3 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [a97 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [7c4 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -peer0.org1.example.com | [a98 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [7c5 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 principal evaluation fails -peer0.org1.example.com | [a99 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4232fae40 env 0xc422a4c090 txn 0 -orderer.example.com | [7c6 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120631237007500 evaluation fails -peer0.org1.example.com | [a9a 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422a4c090 -orderer.example.com | [7c7 01-05 02:50:31.23 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 | [7c8 01-05 02:50:31.23 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 | [7c9 01-05 02:50:31.23 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 | [7ca 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120631237723400 evaluation starts -orderer.example.com | [7cb 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [a9b 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -peer0.org1.example.com | [a9c 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | [7cc 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [a9d 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [7cd 01-05 02:50:31.23 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 | [a9e 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -orderer.example.com | [7ce 01-05 02:50:31.23 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 | [a9f 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [aa0 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [7cf 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 principal matched by identity 0 -peer0.org1.example.com | [aa1 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4228c8800, header channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -orderer.example.com | [7d0 01-05 02:50:31.23 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 fb 95 b2 6f 4f 60 c9 d3 96 27 d2 13 57 7a a4 13 |...oO`...'..Wz..| -peer0.org1.example.com | [aa2 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 00000010 6f 54 80 9c 69 49 9d 38 68 10 82 0a e3 57 cb de |oT..iI.8h....W..| -peer0.org1.example.com | [aa3 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | [7d1 01-05 02:50:31.23 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 7e 75 74 a7 73 f0 d3 10 07 a8 cf d9 |0D. ~ut.s.......| -peer0.org1.example.com | [aa4 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | 00000010 bd 33 64 3d 36 47 c0 e0 0a a1 e6 96 ac 37 71 e9 |.3d=6G.......7q.| -orderer.example.com | 00000020 4e d2 21 63 02 20 12 7b 95 00 67 c2 c0 f7 c7 3a |N.!c. .{..g....:| -orderer.example.com | 00000030 9e 73 24 86 00 60 e3 f0 9c 98 3a 67 63 77 bc ee |.s$..`....:gcw..| -peer0.org1.example.com | [aa5 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -orderer.example.com | 00000040 99 8d 83 c2 0e 04 |......| -orderer.example.com | [7d2 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 principal evaluation succeeds for identity 0 -orderer.example.com | [7d3 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120631237723400 evaluation succeeds -orderer.example.com | [7d4 01-05 02:50:31.23 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 | [7d5 01-05 02:50:31.23 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 | [7d6 01-05 02:50:31.23 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 | [aa6 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org1.example.com | [aa7 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -orderer.example.com | [7d7 01-05 02:50:31.23 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 | [7d8 01-05 02:50:31.23 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 | [7d9 01-05 02:50:31.23 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 | [7da 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209edaa0) start: > stop: > from 172.18.0.5:51548 -peer0.org1.example.com | [aa8 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422a4c090 envbytes 0xc421a72400 -orderer.example.com | [7db 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -orderer.example.com | [7dc 01-05 02:50:31.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=[12121] -orderer.example.com | [7dd 01-05 02:50:31.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 | [aa9 01-05 02:51:05.66 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 = [8ca8365b-6af4-4e62-8334-3c2be5290d53] -orderer.example.com | [7de 01-05 02:50:31.23 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]} -orderer.example.com | [7df 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -orderer.example.com | [7e0 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -orderer.example.com | [7e1 01-05 02:50:31.24 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 | [7e2 01-05 02:50:31.24 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 | [aaa 01-05 02:51:05.66 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 | [7e3 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -peer0.org1.example.com | [aab 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [8ca8365b-6af4-4e62-8334-3c2be5290d53] -orderer.example.com | [7e4 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -orderer.example.com | [7e5 01-05 02:50:31.24 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 | [aac 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a72400 -orderer.example.com | [7e6 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [7e7 01-05 02:50:32.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:47226 -peer0.org1.example.com | [aad 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [aae 01-05 02:51:05.66 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 = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org1.example.com | [aaf 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=08f9414e-b992-4987-834f-360a36c07160,syscc=true,proposal=0x0,canname=vscc:1.1.0 -peer0.org1.example.com | [ab0 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 chaindID businesschannel -orderer.example.com | [7e8 01-05 02:50:39.47 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:47226 with txid '49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993' of type ENDORSER_TRANSACTION -peer0.org1.example.com | [ab1 01-05 02:51:05.66 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 | [7e9 01-05 02:50:39.47 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 | [ab2 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | [7ea 01-05 02:50:39.47 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 | [ab3 01-05 02:51:05.66 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 | [7eb 01-05 02:50:39.47 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 | [ab4 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [08f9414e]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [7ec 01-05 02:50:39.47 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 | [ab5 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [7ed 01-05 02:50:39.47 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 | [ab6 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [08f9414e]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [7ee 01-05 02:50:39.47 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 | [ab7 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [08f9414e]Move state message TRANSACTION -peer0.org1.example.com | [ab8 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [08f9414e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [7ef 01-05 02:50:39.47 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 | [ab9 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [aba 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [08f9414e]sending state message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [abb 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]Received message TRANSACTION from shim -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -peer0.org1.example.com | [abc 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [08f9414e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [abd 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [08f9414e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -peer0.org1.example.com | [abe 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -peer0.org1.example.com | [abf 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -peer0.org1.example.com | [ac0 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -orderer.example.com | jTZ94VyvHhJOn4fshoU= -peer0.org1.example.com | [ac1 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [ac2 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]Move state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [ac3 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [08f9414e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [ac4 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]send state message COMPLETED -orderer.example.com | [7f0 01-05 02:50:39.47 UTC] [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 0xc42000e228 gate 1515120639478050100 evaluation starts -peer0.org1.example.com | [ac5 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [08f9414e]Received message COMPLETED from shim -orderer.example.com | [7f1 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [7f2 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [ac6 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [08f9414e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [ac7 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [08f9414e-b992-4987-834f-360a36c07160]HandleMessage- COMPLETED. Notify -orderer.example.com | [7f3 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [7f4 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 principal evaluation fails -peer0.org1.example.com | [ac8 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:08f9414e-b992-4987-834f-360a36c07160, channelID:businesschannel -peer0.org1.example.com | [ac9 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | [7f5 01-05 02:50:39.47 UTC] [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 0xc42000e228 gate 1515120639478050100 evaluation fails -peer0.org1.example.com | [aca 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -peer0.org1.example.com | [acb 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a72400 -orderer.example.com | [7f6 01-05 02:50:39.47 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 | [acc 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422a4c090 envbytes 0xc421a72400 -orderer.example.com | [7f7 01-05 02:50:39.47 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 | [acd 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4232fae40 env 0xc422a4c090 txn 0 -orderer.example.com | [7f8 01-05 02:50:39.47 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 | [7f9 01-05 02:50:39.47 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 | [ace 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -orderer.example.com | [7fa 01-05 02:50:39.47 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 | [7fb 01-05 02:50:39.47 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 | [acf 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [7fc 01-05 02:50:39.47 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 | [ad0 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -orderer.example.com | [7fd 01-05 02:50:39.47 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 | [7fe 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515120639479510700 evaluation starts -peer0.org1.example.com | [ad1 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [ad2 01-05 02:51:05.69 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 | [7ff 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [ad3 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -orderer.example.com | [800 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [ad4 01-05 02:51:05.69 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 | [801 01-05 02:50:39.47 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 | [ad5 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [ad6 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -orderer.example.com | [802 01-05 02:50:39.48 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 | [803 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -orderer.example.com | [804 01-05 02:50:39.48 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 90 8e 08 ef ca 42 50 32 a4 d8 3e 9a b0 d0 32 b1 |.....BP2..>...2.| -peer0.org1.example.com | [ad7 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -orderer.example.com | 00000010 34 4c bc 4b 46 50 75 a8 f0 95 5c 95 b3 40 cb 3c |4L.KFPu...\..@.<| -orderer.example.com | [805 01-05 02:50:39.48 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 21 de 09 4d 49 41 5e 85 4d f4 9f c2 |0D. !..MIA^.M...| -peer0.org1.example.com | [ad8 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -orderer.example.com | 00000010 e0 19 74 db 9e 00 e3 1f 91 92 b0 1d 2a a8 d6 8b |..t.........*...| -peer0.org1.example.com | [ad9 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 00000020 a5 2d c3 f8 02 20 66 92 6e ab 7f ba d9 86 82 b5 |.-... f.n.......| -peer0.org1.example.com | [ada 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -orderer.example.com | 00000030 00 b5 08 23 dc 7b 27 64 6c b6 59 e6 b9 9f 9c 32 |...#.{'dl.Y....2| -orderer.example.com | 00000040 2c d8 6e da 57 d4 |,.n.W.| -peer0.org1.example.com | [adb 01-05 02:51:05.69 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 [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] marked as valid by state validator -orderer.example.com | [806 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [adc 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [807 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515120639479510700 evaluation succeeds -peer0.org1.example.com | [add 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [808 01-05 02:50:39.48 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 | [ade 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [adf 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -orderer.example.com | [809 01-05 02:50:39.48 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 | [ae0 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -peer0.org1.example.com | [ae1 01-05 02:51:05.71 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{0x97, 0xdc, 0xe2, 0x89, 0x84, 0x47, 0xe2, 0x45, 0x40, 0xea, 0x20, 0xe4, 0xf, 0x22, 0x6b, 0x86, 0x1e, 0x9c, 0x6d, 0x3a, 0xe1, 0x5e, 0x59, 0xbd, 0xd4, 0x2c, 0x25, 0x5b, 0x47, 0x73, 0xa2, 0xfc} txOffsets= -peer0.org1.example.com | txId=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 locPointer=offset=70, bytesLength=2921 -orderer.example.com | [80a 01-05 02:50:39.48 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 | ] -peer0.org1.example.com | [ae2 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to index -orderer.example.com | [80b 01-05 02:50:39.48 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 | [ae3 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx number:[0] ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to blockNumTranNum index -peer0.org1.example.com | [ae4 01-05 02:51:05.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=[60310], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [ae5 01-05 02:51:05.71 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 | [80c 01-05 02:50:39.48 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 | [ae6 01-05 02:51:05.71 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 | [ae7 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer0.org1.example.com | [ae8 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer0.org1.example.com | [ae9 01-05 02:51:05.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 | [aea 01-05 02:51:05.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.org1.example.com | [aeb 01-05 02:51:05.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}] -peer0.org1.example.com | [aec 01-05 02:51:05.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}] -orderer.example.com | [80d 01-05 02:50:39.48 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 | [aed 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [aee 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer0.org1.example.com | [aef 01-05 02:51:05.72 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 | [af0 01-05 02:51:05.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 [6] -peer0.org1.example.com | [af1 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | [80e 01-05 02:50:39.48 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:47226 -peer0.org1.example.com | [af2 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 -orderer.example.com | [80f 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -peer0.org1.example.com | [af3 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | [810 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47226: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [af4 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [811 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [af5 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [812 01-05 02:50:39.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [813 01-05 02:50:39.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:47234 -peer0.org1.example.com | [af6 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [814 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -peer0.org1.example.com | [af7 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [815 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [af8 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [816 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [817 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [af9 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [afa 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [818 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [819 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...67355EE166510B3E46BAD9D14682C851 -peer0.org1.example.com | [afb 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [81a 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DBE3DCD3BE66E9D53F978D5F2021DA86E98AF4E6C4AE81BB3922091F3F2FABE5 -peer0.org1.example.com | [afc 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54570 -orderer.example.com | [81b 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [afd 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4229cf320 -orderer.example.com | [81c 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [afe 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [aff 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [81d 01-05 02:50:41.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 | [b00 01-05 02:51:05.76 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 | [81e 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b01 01-05 02:51:05.76 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 | [81f 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [820 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...67355EE166510B3E46BAD9D14682C851 -peer0.org1.example.com | [b02 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [821 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 2B46EBF76868AC691D01285BBD910EB120F98176381828ECD474D7E2986CE06A -peer0.org1.example.com | [b03 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4236cb360, header 0xc4229cf350 -orderer.example.com | [822 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe, 0x90, 0x8f, 0xe0, 0x5d, 0x11, 0xe, 0x2b, 0x26, 0x2, 0x93, 0x17, 0xd8, 0xf4, 0xe7, 0xf8, 0x68, 0xa3, 0x4e, 0xab, 0x6, 0x60, 0xe1, 0x9e, 0xc6, 0x8a, 0x90, 0xc8, 0x16, 0x7f, 0xf0, 0xb9} txOffsets= -orderer.example.com | txId=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 locPointer=offset=70, bytesLength=3455 -peer0.org1.example.com | [b04 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | ] -peer0.org1.example.com | [b05 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 -orderer.example.com | [823 01-05 02:50:41.55 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 | [b06 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -peer0.org1.example.com | [b07 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | [825 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -peer0.org1.example.com | [b08 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -peer0.org1.example.com | [b09 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel -orderer.example.com | [826 01-05 02:50:41.55 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 | [b0a 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [b0b 01-05 02:51:05.76 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=40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20,syscc=true,proposal=0xc4236cb360,canname=qscc:1.1.0 -orderer.example.com | [827 01-05 02:50:41.55 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 | [828 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -peer0.org1.example.com | [b0c 01-05 02:51:05.76 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 | [829 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -peer0.org1.example.com | [b0d 01-05 02:51:05.76 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 | [82a 01-05 02:50:41.55 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 | [82b 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -peer0.org1.example.com | [b0e 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -orderer.example.com | [82c 01-05 02:50:41.55 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 | [b0f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [82d 01-05 02:50:41.55 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 | [b10 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [82e 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -peer0.org1.example.com | [b11 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | [82f 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65ae0) for 172.18.0.2:38300 -orderer.example.com | [830 01-05 02:50:41.55 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:38300: rpc error: code = Unavailable desc = transport is closing -orderer.example.com | [831 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [832 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [833 01-05 02:50:41.55 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 | [b12 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [834 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [835 01-05 02:50:41.55 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 | [b13 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Move state message TRANSACTION -orderer.example.com | [836 01-05 02:50:41.55 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 | [837 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -peer0.org1.example.com | [b14 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [838 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -orderer.example.com | [839 01-05 02:50:41.56 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 | [b15 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [824 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -orderer.example.com | [83a 01-05 02:50:47.99 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:47234 with txid 'c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc' of type ENDORSER_TRANSACTION -orderer.example.com | [83b 01-05 02:50:47.99 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 | [b16 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]sending state message TRANSACTION -orderer.example.com | [83c 01-05 02:50:47.99 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 | [83d 01-05 02:50:47.99 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 | [83e 01-05 02:50:47.99 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 | [b17 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Received message TRANSACTION from shim -orderer.example.com | [83f 01-05 02:50:47.99 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 | [840 01-05 02:50:47.99 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 | [841 01-05 02:50:47.99 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 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [b18 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [b19 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40a7e070]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -peer0.org1.example.com | [b1a 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -peer0.org1.example.com | [b1b 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -peer0.org1.example.com | [b1c 01-05 02:51:05.77 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] -orderer.example.com | 3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -peer0.org1.example.com | [b1d 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34230], Going to peek [8] bytes -orderer.example.com | mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -peer0.org1.example.com | [b1e 01-05 02:51:05.77 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]} -orderer.example.com | AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -peer0.org1.example.com | [b1f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Transaction completed. Sending COMPLETED -orderer.example.com | R0L5Jr8878bLU6IcEA== -peer0.org1.example.com | [b20 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Move state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [b21 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | [842 01-05 02:50:47.99 UTC] [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 0xc42000e270 gate 1515120647998726400 evaluation starts -peer0.org1.example.com | [b22 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]send state message COMPLETED -orderer.example.com | [843 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [b23 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Received message COMPLETED from shim -orderer.example.com | [844 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b24 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [845 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -peer0.org1.example.com | [b25 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20]HandleMessage- COMPLETED. Notify -orderer.example.com | [846 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation fails -orderer.example.com | [847 01-05 02:50:48.00 UTC] [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 0xc42000e270 gate 1515120647998726400 evaluation fails -peer0.org1.example.com | [b26 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20, channelID:businesschannel -orderer.example.com | [848 01-05 02:50:48.00 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 | [b27 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [b28 01-05 02:51:05.77 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 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | [849 01-05 02:50:48.00 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 | [84a 01-05 02:50:48.00 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 | [84b 01-05 02:50:48.00 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 | [b2a 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -orderer.example.com | [84c 01-05 02:50:48.00 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 | [84d 01-05 02:50:48.00 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 | [b2b 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | [84e 01-05 02:50:48.00 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 | [b2c 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | [84f 01-05 02:50:48.00 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 | [b2d 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -orderer.example.com | [850 01-05 02:50:48.00 UTC] [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 0xc42000e008 gate 1515120648001244100 evaluation starts -peer0.org1.example.com | [b2e 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel version: 1.1.0 -peer0.org1.example.com | [b2f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20,syscc=true,proposal=0xc4236cb360,canname=escc:1.1.0 -orderer.example.com | [851 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [852 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b30 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -orderer.example.com | [853 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -peer0.org1.example.com | [b31 01-05 02:51:05.77 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 | [b32 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -orderer.example.com | [854 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal evaluation fails -peer0.org1.example.com | [b33 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | [855 01-05 02:50:48.00 UTC] [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 0xc42000e008 gate 1515120648001244100 evaluation fails -orderer.example.com | [856 01-05 02:50:48.00 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 | [b34 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | [857 01-05 02:50:48.00 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 | [b35 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [b36 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | [858 01-05 02:50:48.00 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 | [b37 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Move state message TRANSACTION -orderer.example.com | [859 01-05 02:50:48.00 UTC] [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 0xc42000e028 gate 1515120648002825600 evaluation starts -orderer.example.com | [85a 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [85b 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b38 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | [85c 01-05 02:50:48.00 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 | [b39 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | [85d 01-05 02:50:48.00 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 | [b3a 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]sending state message TRANSACTION -peer0.org1.example.com | [b3b 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Received message TRANSACTION from shim -orderer.example.com | [85e 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 principal matched by identity 0 -peer0.org1.example.com | [b3c 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | [85f 01-05 02:50:48.00 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 6c de 09 a0 95 18 79 a0 fd c2 ec a6 1a 01 b5 56 |l.....y........V| -peer0.org1.example.com | [b3d 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40a7e070]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [b3e 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 00000010 cd c1 1c 3e 43 c2 9a 61 2b 80 39 eb 9a 13 cc 36 |...>C..a+.9....6| -peer0.org1.example.com | [b3f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | [860 01-05 02:50:48.00 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 b1 02 09 b5 22 65 22 4d 73 9f 11 |0E.!....."e"Ms..| -peer0.org1.example.com | [b40 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [b41 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Move state message COMPLETED -orderer.example.com | 00000010 9a 47 4c 28 85 83 28 6d 81 f2 ee 13 c0 b9 07 c6 |.GL(..(m........| -peer0.org1.example.com | [b42 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [b43 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]send state message COMPLETED -orderer.example.com | 00000020 d2 67 59 a7 4c 02 20 3e 7d 96 da 12 d5 a6 a0 68 |.gY.L. >}......h| -orderer.example.com | 00000030 b7 f2 cd 1f bd 11 4a f1 30 64 81 58 5a 35 8b c3 |......J.0d.XZ5..| -peer0.org1.example.com | [b44 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Received message COMPLETED from shim -orderer.example.com | 00000040 0b 11 64 29 d8 fd b6 |..d)...| -peer0.org1.example.com | [b45 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | [861 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [b46 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20]HandleMessage- COMPLETED. Notify -orderer.example.com | [862 01-05 02:50:48.00 UTC] [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 0xc42000e028 gate 1515120648002825600 evaluation succeeds -peer0.org1.example.com | [b47 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20, channelID:businesschannel -orderer.example.com | [863 01-05 02:50:48.00 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 | [864 01-05 02:50:48.00 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 | [b48 01-05 02:51:05.78 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 | [865 01-05 02:50:48.00 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 | [b49 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | [866 01-05 02:50:48.00 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 | [867 01-05 02:50:48.00 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 | [868 01-05 02:50:48.00 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 | [b4a 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | [869 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:47234 -orderer.example.com | [86a 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [86b 01-05 02:50:48.01 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.6:7050->172.18.0.7:47234: read: connection reset by peer -peer0.org1.example.com | [b4b 01-05 02:51:05.78 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 [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -orderer.example.com | [86c 01-05 02:50:48.01 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47234: rpc error: code = Canceled desc = context canceled -orderer.example.com | [86d 01-05 02:50:48.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [b4c 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54570) -orderer.example.com | [86e 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [86f 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b4d 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -peer0.org1.example.com | [b4e 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -orderer.example.com | [870 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [871 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b4f 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -orderer.example.com | [872 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [873 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A9AAF7C882DCCF11EF85E47BC4D5FF02 -peer0.org1.example.com | [b50 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -orderer.example.com | [874 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 7E160CB3B8A6A339A1BC3D80A023881DE2E52CF239A790EEF05A7EE486C2DE44 -orderer.example.com | [875 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b51 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420324d60 env 0xc4224f50e0 txn 0 -orderer.example.com | [876 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [b52 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4224f50e0 -orderer.example.com | [877 01-05 02:50:50.01 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 | [b53 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -orderer.example.com | [878 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b54 01-05 02:51:14.85 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 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | [879 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [b56 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -peer0.org1.example.com | [b57 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [b58 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | [87a 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A9AAF7C882DCCF11EF85E47BC4D5FF02 -peer0.org1.example.com | [b59 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422a00000, header channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -peer0.org1.example.com | [b5a 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [b5b 01-05 02:51:14.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 | [87b 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 5A6D31808E814A16B9B425531C42791761A2D8CAD03F3A132AD49D1340BB4FF8 -peer0.org1.example.com | [b5c 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [b5d 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [87c 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x4, 0x54, 0x21, 0x67, 0xdf, 0x21, 0x1b, 0x2e, 0xa, 0xd7, 0xd0, 0x9, 0xa7, 0xc, 0xf3, 0x44, 0x38, 0x6f, 0x1f, 0x90, 0x3, 0x52, 0xcd, 0xef, 0x5, 0x8a, 0x93, 0xb8, 0xa, 0xcf, 0x60, 0x61} txOffsets= -peer0.org1.example.com | [b5e 01-05 02:51:14.85 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 | [b5f 01-05 02:51:14.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 02:51:14.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 02:51:14.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 | txId=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc locPointer=offset=70, bytesLength=3460 -peer0.org1.example.com | [b62 01-05 02:51:14.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 -peer0.org1.example.com | [b63 01-05 02:51:14.85 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 | [b64 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [b65 01-05 02:51:14.85 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 | [b66 01-05 02:51:14.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 -peer0.org1.example.com | [b67 01-05 02:51:14.85 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 | ] -peer0.org1.example.com | [b68 01-05 02:51:14.85 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 | [87d 01-05 02:50:50.01 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] -peer0.org1.example.com | [b69 01-05 02:51:14.85 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 | [b6a 01-05 02:51:14.85 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 | [b6b 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [87e 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -peer0.org1.example.com | [b6c 01-05 02:51:14.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 -orderer.example.com | [87f 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -orderer.example.com | [880 01-05 02:50:50.01 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 | [b6d 01-05 02:51:14.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 -orderer.example.com | [881 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -orderer.example.com | [883 01-05 02:50:50.01 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 | [b6e 01-05 02:51:14.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 -peer0.org1.example.com | [b6f 01-05 02:51:14.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 | [882 01-05 02:50:50.01 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 | [b70 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -orderer.example.com | [885 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] -peer0.org1.example.com | [b71 01-05 02:51:14.86 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 | [884 01-05 02:50:50.01 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 | [b72 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [887 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -orderer.example.com | [886 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] -orderer.example.com | [888 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -peer0.org1.example.com | [b73 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [889 01-05 02:50:50.02 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 | [88a 01-05 02:50:50.03 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 | [88b 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [88c 01-05 02:50:56.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.7:47244 -peer0.org1.example.com | [b74 01-05 02:51:14.86 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 | [88d 01-05 02:50:56.11 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:47244 with txid '48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070' of type ENDORSER_TRANSACTION -orderer.example.com | [88e 01-05 02:50:56.11 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 | [88f 01-05 02:50:56.11 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 | [890 01-05 02:50:56.11 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 | [b75 01-05 02:51:14.86 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 | [891 01-05 02:50:56.11 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 | [b76 01-05 02:51:14.86 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 | [892 01-05 02:50:56.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 == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [893 01-05 02:50:56.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 0xc420138528 gate 1515120656116407100 evaluation starts -orderer.example.com | [894 01-05 02:50:56.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 0xc420138528 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [895 01-05 02:50:56.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 0xc420138528 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b77 01-05 02:51:14.86 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 | [896 01-05 02:50:56.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 0xc420138528 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -peer0.org1.example.com | [b78 01-05 02:51:14.86 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 | [897 01-05 02:50:56.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 0xc420138528 principal evaluation fails -peer0.org1.example.com | [b79 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [b7a 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [898 01-05 02:50:56.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 0xc420138528 gate 1515120656116407100 evaluation fails -peer0.org1.example.com | [b7b 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [899 01-05 02:50:56.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 did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [b7c 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [89a 01-05 02:50:56.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/Orderer/OrdererOrg/Writers -orderer.example.com | [89b 01-05 02:50:56.11 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 | [b7d 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [89c 01-05 02:50:56.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 did not satisfy policy /Channel/Orderer/Writers -peer0.org1.example.com | [b7e 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [89d 01-05 02:50:56.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/Orderer/Writers -peer0.org1.example.com | [b7f 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [89e 01-05 02:50:56.11 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 | [b80 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [89f 01-05 02:50:56.11 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 | [8a0 01-05 02:50:56.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 == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -peer0.org1.example.com | [b81 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [8a1 01-05 02:50:56.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 0xc420138568 gate 1515120656117003600 evaluation starts -peer0.org1.example.com | [b82 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [8a2 01-05 02:50:56.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 0xc420138568 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [b83 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [b84 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [8a3 01-05 02:50:56.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 0xc420138568 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [b85 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [8a4 01-05 02:50:56.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 Org1MSP -peer0.org1.example.com | [b86 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [8a5 01-05 02:50:56.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 Org1MSP validating identity -peer0.org1.example.com | [b87 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [8a6 01-05 02:50:56.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 0xc420138568 principal matched by identity 0 -peer0.org1.example.com | [b88 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [8a7 01-05 02:50:56.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 ff 58 15 d4 94 4d c3 57 6b d3 b9 ee 2e 04 8e fe |.X...M.Wk.......| -orderer.example.com | 00000010 4f 35 ec 3c 8d f6 b5 e5 13 f3 de 7e d1 8c 4c 37 |O5.<.......~..L7| -peer0.org1.example.com | [b89 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [8a8 01-05 02:50:56.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 45 02 21 00 be 5c 17 cc 82 a0 4b a4 33 0e d1 |0E.!..\....K.3..| -peer0.org1.example.com | [b8a 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | 00000010 15 83 73 3e 7c 9f 44 bc ec 5e 70 a4 ca 6a 61 69 |..s>|.D..^p..jai| -peer0.org1.example.com | [b8b 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | 00000020 17 95 90 e2 e0 02 20 5f 8e 61 fe be 08 46 34 4e |...... _.a...F4N| -peer0.org1.example.com | [b8c 01-05 02:51:14.86 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 | 00000030 c0 ae fa 4d 39 17 d6 bc f8 67 1e b0 ea 62 04 c8 |...M9....g...b..| -peer0.org1.example.com | [b8d 01-05 02:51:14.86 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 | 00000040 94 da 74 e7 36 13 c7 |..t.6..| -peer0.org1.example.com | [b8e 01-05 02:51:14.86 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 | [8a9 01-05 02:50:56.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 0xc420138568 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [b8f 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [8aa 01-05 02:50:56.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 0xc420138568 gate 1515120656117003600 evaluation succeeds -peer0.org1.example.com | [b90 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [8ab 01-05 02:50:56.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/Org1MSP/Writers -peer0.org1.example.com | [b91 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [8ac 01-05 02:50:56.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/Org1MSP/Writers -orderer.example.com | [8ad 01-05 02:50:56.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 | [b92 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [8ae 01-05 02:50:56.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 -orderer.example.com | [8af 01-05 02:50:56.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 | [b93 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [8b0 01-05 02:50:56.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 | [b94 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [8b1 01-05 02:50:56.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.7:47244 -peer0.org1.example.com | [b96 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [8b2 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -peer0.org1.example.com | [b98 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [8b3 01-05 02:50:56.12 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47244: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [b99 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [8b4 01-05 02:50:56.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [8b5 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [8b6 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b9b 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [8b7 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [b9c 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [8b8 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [b9e 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [8b9 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [ba0 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [8ba 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A98949F6C1D67BD3D037A43560B0C840 -peer0.org1.example.com | [ba2 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [8bb 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: ABA11BD6D3DE3FB26DD95081B9AFF9EDC9FB33E64E1C613F2B7F9BF80E314544 -peer0.org1.example.com | [ba3 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [8bc 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [ba4 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [8bd 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [ba5 01-05 02:51:14.86 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 | [ba6 01-05 02:51:14.86 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 | [8be 01-05 02:50:58.12 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 | [8bf 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [ba7 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [8c0 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8c1 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A98949F6C1D67BD3D037A43560B0C840 -peer0.org1.example.com | [ba8 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [8c2 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C313B769024288ED4574F9074E6F929D2711DACC8F2B68ED214A2C25333F9E7B -peer0.org1.example.com | [ba9 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [8c3 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x1a, 0x80, 0x18, 0x1d, 0x93, 0xc3, 0x60, 0x8e, 0xce, 0xbf, 0x47, 0x31, 0xed, 0x4e, 0xf9, 0xa0, 0x87, 0xb9, 0xd2, 0xce, 0x1f, 0xf7, 0x3b, 0xc3, 0xc0, 0x4d, 0x5a, 0xeb, 0x7b, 0x63, 0x3c, 0x18} txOffsets= -peer0.org1.example.com | [baa 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [bab 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -orderer.example.com | txId=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 locPointer=offset=70, bytesLength=2917 -peer0.org1.example.com | [bac 01-05 02:51:14.86 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 | ] -peer0.org1.example.com | [bad 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [8c4 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55518], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org1.example.com | [bae 01-05 02:51:14.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 | [baf 01-05 02:51:14.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 | [bb0 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [8c5 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -orderer.example.com | [8c6 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -peer0.org1.example.com | [bb1 01-05 02:51:14.86 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 | [8c7 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4781], Going to peek [8] bytes -peer0.org1.example.com | [bb2 01-05 02:51:14.86 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 | [8c8 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4779], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} -peer0.org1.example.com | [bb3 01-05 02:51:14.87 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 02:51:14.87 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 | [8c9 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4779] read from file [0] -peer0.org1.example.com | [bb5 01-05 02:51:14.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 -peer0.org1.example.com | [bb6 01-05 02:51:14.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 -orderer.example.com | [8ca 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -peer0.org1.example.com | [bb7 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [8cc 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4781], Going to peek [8] bytes -orderer.example.com | [8cd 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4779], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} -peer0.org1.example.com | [bb8 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [8ce 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4779] read from file [0] -peer0.org1.example.com | [bb9 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [8cb 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -peer0.org1.example.com | [bba 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [8cf 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -peer0.org1.example.com | [bbb 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [8d0 01-05 02:50:58.12 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 | [bbc 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [8d1 01-05 02:50:58.13 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 | [bbd 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [8d2 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer0.org1.example.com | [bbe 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [8d3 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:47254 -peer0.org1.example.com | [bbf 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [8d4 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:47254 with txid '35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403' of type ENDORSER_TRANSACTION -peer0.org1.example.com | [bc0 01-05 02:51:14.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 -peer0.org1.example.com | [bc1 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [bc2 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [bc3 01-05 02:51:14.89 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 | [8d5 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -peer0.org1.example.com | [bc4 01-05 02:51:14.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 | [bc5 01-05 02:51:14.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 | [bc6 01-05 02:51:14.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.org1.example.com | [bc7 01-05 02:51:14.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 -orderer.example.com | [8d6 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [bc8 01-05 02:51:14.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 -peer0.org1.example.com | [bc9 01-05 02:51:14.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 -peer0.org1.example.com | [bca 01-05 02:51:14.90 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 | [bcb 01-05 02:51:14.90 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 | [bcc 01-05 02:51:14.90 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 | [bcd 01-05 02:51:14.90 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 | [8d7 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer0.org1.example.com | [bce 01-05 02:51:14.90 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 | [8d8 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [bcf 01-05 02:51:14.90 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 | [bd0 01-05 02:51:14.90 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 | [bd1 01-05 02:51:14.90 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 | [8d9 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -peer0.org1.example.com | [bd2 01-05 02:51:14.90 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 | [bd3 01-05 02:51:14.90 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 | [bd4 01-05 02:51:14.90 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 | [8da 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120663631096100 evaluation starts -peer0.org1.example.com | [bd5 01-05 02:51:14.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 -peer0.org1.example.com | [bd6 01-05 02:51:14.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 | [bd7 01-05 02:51:14.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 -orderer.example.com | [8db 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [bd8 01-05 02:51:14.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 -orderer.example.com | [8dc 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8dd 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -peer0.org1.example.com | [bd9 01-05 02:51:14.90 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 | [8de 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 principal evaluation fails -orderer.example.com | [8df 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120663631096100 evaluation fails -orderer.example.com | [8e0 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [8e1 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [8e2 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [8e3 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [8e4 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -peer0.org1.example.com | [bda 01-05 02:51:14.90 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 | [8e5 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -peer0.org1.example.com | [bdb 01-05 02:51:14.90 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 | [8e6 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [8e7 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [8e8 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120663632467800 evaluation starts -orderer.example.com | [8e9 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [bdc 01-05 02:51:14.90 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 | [8ea 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [bdd 01-05 02:51:14.90 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 | [8eb 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [8ec 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 principal evaluation fails -orderer.example.com | [8ed 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120663632467800 evaluation fails -peer0.org1.example.com | [bde 01-05 02:51:14.91 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 | [8ee 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [8ef 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [8f0 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -peer0.org1.example.com | [bdf 01-05 02:51:14.91 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 | [be0 01-05 02:51:14.91 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 | [8f1 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515120663633357400 evaluation starts -peer0.org1.example.com | [be1 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [8f2 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8f3 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [be2 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [8f4 01-05 02:51:03.63 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 | [be3 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [8f5 01-05 02:51:03.63 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 | [be4 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [8f6 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal matched by identity 0 -peer0.org1.example.com | [be5 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [8f7 01-05 02:51:03.63 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 9c 4e 53 c2 24 82 c8 7b 4e e3 64 b8 b1 b0 c2 c0 |.NS.$..{N.d.....| -peer0.org1.example.com | [be6 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [be7 01-05 02:51:14.91 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 | 00000010 6a 85 7a 93 15 a5 85 23 2a c9 8b a5 fe 0e 80 f6 |j.z....#*.......| -orderer.example.com | [8f8 01-05 02:51:03.63 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 6e 12 b0 6f ee bc 31 bd 98 c7 a3 b5 |0D. n..o..1.....| -orderer.example.com | 00000010 11 55 a7 3e 08 9c 29 3e da a7 b9 8c c8 63 e4 da |.U.>..)>.....c..| -peer0.org1.example.com | [be8 01-05 02:51:14.93 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [be9 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | 00000020 3f 11 69 6b 02 20 69 f9 b1 10 72 01 92 10 b2 55 |?.ik. i...r....U| -orderer.example.com | 00000030 5a f7 3f 91 f0 aa 7b 57 43 d1 b4 8b 18 63 09 bf |Z.?...{WC....c..| -peer0.org1.example.com | [bea 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | 00000040 19 7e 9b ea 44 a3 |.~..D.| -peer0.org1.example.com | [beb 01-05 02:51:14.95 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 | [bec 01-05 02:51:14.95 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 | [bed 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | [8f9 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation succeeds for identity 0 -orderer.example.com | [8fa 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515120663633357400 evaluation succeeds -orderer.example.com | [8fb 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [8fc 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [bee 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [bef 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420324d60 env 0xc4224f50e0 txn 0 -orderer.example.com | [8fd 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -peer0.org1.example.com | [bf0 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [bf1 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -orderer.example.com | [8fe 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [8ff 01-05 02:51:03.63 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 | [bf2 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | [900 01-05 02:51:03.63 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 | [901 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:47254 -peer0.org1.example.com | [bf3 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -orderer.example.com | [902 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -peer0.org1.example.com | [bf4 01-05 02:51:14.95 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 | [903 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47254: rpc error: code = Canceled desc = context canceled -orderer.example.com | [904 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -peer0.org1.example.com | [bf5 01-05 02:51:14.95 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 | [905 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -peer0.org1.example.com | [bf6 01-05 02:51:14.95 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 | [bf7 01-05 02:51:14.95 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 | [906 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [bf8 01-05 02:51:14.95 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 | [907 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [bf9 01-05 02:51:14.95 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 02:51:14.95 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 | [908 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [909 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [bfb 01-05 02:51:14.95 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 | [bfc 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [90a 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...92DFBF9FE685721D5684D093AE33D425 -peer0.org1.example.com | [bfd 01-05 02:51:14.95 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 | [bfe 01-05 02:51:14.95 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 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [c00 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [c01 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [90b 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: FC5A9449A9BB79992B2D45774B55BC97A52A4E5D8D7419FF4E9EE8C2052BA0A6 -peer0.org1.example.com | [c02 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [90c 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [c03 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [90d 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [c04 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [c05 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [90e 01-05 02:51:05.63 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 | [c06 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [90f 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [c07 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [910 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [c08 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [c09 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [c0a 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [911 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...92DFBF9FE685721D5684D093AE33D425 -peer0.org1.example.com | [c0b 01-05 02:51:14.96 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 02:51:14.96 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 | [c0d 01-05 02:51:14.96 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 02:51:14.96 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 | [912 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DB866622D2A9D08CC3C9F9D247076EF93BCE044CA6E5C9D1D86A5E582F72CE39 -peer0.org1.example.com | [c0f 01-05 02:51:14.96 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 | [913 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x97, 0xdc, 0xe2, 0x89, 0x84, 0x47, 0xe2, 0x45, 0x40, 0xea, 0x20, 0xe4, 0xf, 0x22, 0x6b, 0x86, 0x1e, 0x9c, 0x6d, 0x3a, 0xe1, 0x5e, 0x59, 0xbd, 0xd4, 0x2c, 0x25, 0x5b, 0x47, 0x73, 0xa2, 0xfc} txOffsets= -peer0.org1.example.com | [c10 01-05 02:51:14.96 UTC] [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 | [c11 01-05 02:51:14.96 UTC] [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 | txId=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 locPointer=offset=70, bytesLength=2921 -peer0.org1.example.com | [c12 01-05 02:51:14.96 UTC] [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 | ] -peer0.org1.example.com | [c13 01-05 02:51:14.96 UTC] [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 | [914 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60303], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [c14 01-05 02:51:14.96 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 02:51:14.96 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 | [916 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [917 01-05 02:51:05.65 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 | [c16 01-05 02:51:14.96 UTC] [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 | [918 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -peer0.org1.example.com | [c17 01-05 02:51:14.96 UTC] [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 | [915 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -orderer.example.com | [91a 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -peer0.org1.example.com | [c18 01-05 02:51:14.96 UTC] [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 02:51:14.96 UTC] [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 | [91b 01-05 02:51:05.65 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 | [c1a 01-05 02:51:14.96 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 | [919 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -peer0.org1.example.com | [c1b 01-05 02:51:14.96 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 02:51:14.97 UTC] [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 | [91c 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -orderer.example.com | [91d 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -peer0.org1.example.com | [c1d 01-05 02:51:14.97 UTC] [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 | [91e 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -peer0.org1.example.com | [c1e 01-05 02:51:14.97 UTC] [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 | [91f 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -peer0.org1.example.com | [c1f 01-05 02:51:14.97 UTC] [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 | [920 01-05 02:51:05.66 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 | [c20 01-05 02:51:14.97 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 02:51:14.97 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 | [921 01-05 02:51:05.67 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 | [c22 01-05 02:51:15.00 UTC] [github.com/hyperledger/fabric/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 | [922 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [923 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47274 -peer0.org1.example.com | [c23 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [924 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47274 -peer0.org1.example.com | [c24 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 | [925 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [c25 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [c26 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [926 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [c27 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [927 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer0.org1.example.com | [c28 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [928 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [c29 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [c2a 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [929 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer0.org1.example.com | [c2b 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [92a 01-05 02:51:06.18 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 | [92b 01-05 02:51:06.18 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 | [c2c 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [c2d 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [c2e 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [c2f 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 | [c30 01-05 02:51:15.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: [Policy] /Channel/Orderer/Admins -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -peer0.org1.example.com | [c31 01-05 02:51:15.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 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [c32 01-05 02:51:15.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.org1.example.com | [c33 01-05 02:51:15.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 -peer0.org1.example.com | [c34 01-05 02:51:15.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 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -peer0.org1.example.com | [c35 01-05 02:51:15.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/AnchorPeers -peer0.org1.example.com | [c36 01-05 02:51:15.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 | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -peer0.org1.example.com | [c37 01-05 02:51:15.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 -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -peer0.org1.example.com | [c38 01-05 02:51:15.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 | -----END CERTIFICATE----- -peer0.org1.example.com | [c39 01-05 02:51:15.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/Org3MSP -peer0.org1.example.com | [c3a 01-05 02:51:15.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/Org3MSP/MSP -orderer.example.com | [92c 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515120666185077900 evaluation starts -peer0.org1.example.com | [c3b 01-05 02:51:15.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/Org3MSP/Admins -orderer.example.com | [92d 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [c3c 01-05 02:51:15.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/Org3MSP/Readers -peer0.org1.example.com | [c3d 01-05 02:51:15.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/Org3MSP/Writers -peer0.org1.example.com | [c3e 01-05 02:51:15.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 -orderer.example.com | [92e 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [c3f 01-05 02:51:15.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 | [92f 01-05 02:51:06.18 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 -peer0.org1.example.com | [c40 01-05 02:51:15.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 -orderer.example.com | [930 01-05 02:51:06.18 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 -peer0.org1.example.com | [c41 01-05 02:51:15.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 -peer0.org1.example.com | [c42 01-05 02:51:15.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/Readers -peer0.org1.example.com | [c43 01-05 02:51:15.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.org1.example.com | [c44 01-05 02:51:15.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 -orderer.example.com | [931 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal matched by identity 0 -peer0.org1.example.com | [c45 01-05 02:51:15.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 -orderer.example.com | [932 01-05 02:51:06.18 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 33 19 70 d9 74 40 19 ac 4e 2b 21 18 75 8e 88 31 |3.p.t@..N+!.u..1| -peer0.org1.example.com | [c46 01-05 02:51:15.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 -peer0.org1.example.com | [c47 01-05 02:51:15.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.org1.example.com | [c48 01-05 02:51:15.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 -peer0.org1.example.com | [c49 01-05 02:51:15.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 -peer0.org1.example.com | [c4a 01-05 02:51:15.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/HashingAlgorithm -peer0.org1.example.com | [c4b 01-05 02:51:15.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/Consortium -orderer.example.com | 00000010 5a 67 21 f2 e8 22 67 3a 59 0a c1 0e fe 29 38 be |Zg!.."g:Y....)8.| -peer0.org1.example.com | [c4c 01-05 02:51:15.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/BlockDataHashingStructure -peer0.org1.example.com | [c4d 01-05 02:51:15.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/Writers -peer0.org1.example.com | [c4e 01-05 02:51:15.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/Admins -peer0.org1.example.com | [c4f 01-05 02:51:15.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 -orderer.example.com | [933 01-05 02:51:06.18 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 22 be 67 ef 28 61 01 7b 1e 22 c2 c8 |0D. ".g.(a.{."..| -peer0.org1.example.com | [c50 01-05 02:51:15.08 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 | 00000010 aa e5 b2 d1 e4 a0 16 26 cf 68 c0 af 4d b9 e7 62 |.......&.h..M..b| -peer0.org1.example.com | [c51 01-05 02:51:15.08 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 | 00000020 e5 b0 bb 19 02 20 5a 07 b7 97 a5 59 c3 ca f3 12 |..... Z....Y....| -orderer.example.com | 00000030 0b e2 3e 3c 37 4b 87 f3 b1 26 fa 78 57 7a 16 0d |..><7K...&.xWz..| -peer0.org1.example.com | [c52 01-05 02:51:15.08 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 | 00000040 8b b9 5b 8f 04 32 |..[..2| -orderer.example.com | [934 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [c53 01-05 02:51:15.08 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 | [c54 01-05 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -orderer.example.com | [935 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515120666185077900 evaluation succeeds -orderer.example.com | [936 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [937 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [938 01-05 02:51:06.18 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 | [939 01-05 02:51:06.18 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 | [93a 01-05 02:51:06.18 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 | [c55 01-05 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -orderer.example.com | [93b 01-05 02:51:06.18 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 | [93c 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5c480) start: > stop: > from 172.18.0.7:47274 -orderer.example.com | [93d 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -peer0.org1.example.com | [c56 01-05 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -orderer.example.com | [93e 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] -peer0.org1.example.com | [c57 01-05 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -orderer.example.com | [93f 01-05 02:51:06.18 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 02:51:15.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 [7] -orderer.example.com | [940 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -peer0.org1.example.com | [c59 01-05 02:51:15.12 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{0xce, 0x93, 0x4f, 0xbd, 0x9e, 0x8f, 0x46, 0x9e, 0xe8, 0x99, 0xbc, 0xa0, 0x6c, 0x19, 0xb9, 0xe3, 0x95, 0x93, 0xe9, 0xa6, 0x5, 0xd5, 0x4b, 0x7f, 0x4e, 0x5d, 0xd1, 0x32, 0x6c, 0x50, 0x6f, 0x92} txOffsets= -orderer.example.com | [941 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -orderer.example.com | [942 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5c480) for 172.18.0.7:47274 -orderer.example.com | [943 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47274 for (0xc420a5c480) -orderer.example.com | [944 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47274 -peer0.org1.example.com | txId= locPointer=offset=71, bytesLength=19402 -orderer.example.com | [945 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47274 -orderer.example.com | [946 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -peer0.org1.example.com | ] -orderer.example.com | [947 01-05 02:51:06.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 | [948 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [949 01-05 02:51:06.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 | [94a 01-05 02:51:06.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47274: rpc error: code = Canceled desc = context canceled -orderer.example.com | [94b 01-05 02:51:06.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [94c 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org1.example.com | [c5a 01-05 02:51:15.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=60381, bytesLength=19402] for tx ID: [] to index -orderer.example.com | [94d 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47276 -orderer.example.com | [94e 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47276 -peer0.org1.example.com | [c5b 01-05 02:51:15.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=60381, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | [94f 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [950 01-05 02:51:06.43 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 | [951 01-05 02:51:06.43 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 | [952 01-05 02:51:06.43 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 | [c5c 01-05 02:51:15.13 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=[81579], isChainEmpty=[false], lastBlockNumber=[7] -orderer.example.com | [953 01-05 02:51:06.43 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 | [954 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138608 gate 1515120666431184100 evaluation starts -peer0.org1.example.com | [c5d 01-05 02:51:15.13 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 02:51:15.13 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 | [955 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [c5f 01-05 02:51:15.13 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 | [956 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [c60 01-05 02:51:15.13 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 | [957 01-05 02:51:06.43 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 -peer0.org1.example.com | [c61 01-05 02:51:15.13 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 | [958 01-05 02:51:06.43 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 -peer0.org1.example.com | [c62 01-05 02:51:15.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 | [c63 01-05 02:51:15.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}] -orderer.example.com | [959 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 principal matched by identity 0 -peer0.org1.example.com | [c64 01-05 02:51:15.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 | [95a 01-05 02:51:06.43 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 0e 51 54 10 eb 71 46 63 2c 31 67 8d 66 d9 14 c3 |.QT..qFc,1g.f...| -orderer.example.com | 00000010 70 32 69 4d 04 1f d9 0e 86 ed da 77 71 cf 45 74 |p2iM.......wq.Et| -peer0.org1.example.com | [c65 01-05 02:51:15.13 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 | [95b 01-05 02:51:06.43 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 96 71 98 8b a6 53 76 a2 5a f3 d1 |0E.!..q...Sv.Z..| -peer0.org1.example.com | [c66 01-05 02:51:15.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 [7] with [1] transactions -orderer.example.com | 00000010 8f a3 e0 f8 53 83 f0 7b 4c 9f e4 77 d6 4a b3 b5 |....S..{L..w.J..| -peer0.org1.example.com | [c67 01-05 02:51:15.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 -orderer.example.com | 00000020 e8 a5 75 2d e1 02 20 7e 87 a9 ed 84 b0 c1 24 03 |..u-.. ~......$.| -peer0.org1.example.com | [c68 01-05 02:51:15.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 [7] -peer0.org1.example.com | [c69 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -orderer.example.com | 00000030 44 dc 67 76 97 4e 57 10 c1 21 9e 99 ac a9 1e 69 |D.gv.NW..!.....i| -peer0.org1.example.com | [c6a 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -orderer.example.com | 00000040 89 7a 4d ee 5d f3 60 |.zM.].`| -orderer.example.com | [95c 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [c6b 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [95d 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138608 gate 1515120666431184100 evaluation succeeds -orderer.example.com | [95e 01-05 02:51:06.43 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 | [95f 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [c6c 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [960 01-05 02:51:06.43 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 | [961 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -peer0.org1.example.com | [c6d 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [962 01-05 02:51:06.43 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 | [c6e 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [963 01-05 02:51:06.43 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 | [964 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b54480) start: > stop: > from 172.18.0.7:47276 -peer0.org1.example.com | [c6f 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [965 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [966 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] -peer0.org1.example.com | [c70 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [967 01-05 02:51:06.43 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 | [c71 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [968 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -peer0.org1.example.com | [c72 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [969 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -orderer.example.com | [96a 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b54480) for 172.18.0.7:47276 -orderer.example.com | [96b 01-05 02:51:06.43 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:47276 for (0xc420b54480) -orderer.example.com | [96d 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [96e 01-05 02:51:06.43 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 | [96c 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47276 -orderer.example.com | [970 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [971 01-05 02:51:06.43 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 | [96f 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47276 -orderer.example.com | [972 01-05 02:51:06.43 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 | [973 01-05 02:51:06.43 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 | [974 01-05 02:51:06.43 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 | [975 01-05 02:51:06.43 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 | [976 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [977 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138648 gate 1515120666440156200 evaluation starts -orderer.example.com | [978 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [979 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [97a 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [97b 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [97c 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 principal matched by identity 0 -orderer.example.com | [97d 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 61 6b 29 95 62 80 46 7c 28 46 de b2 db 1c f9 c4 |ak).b.F|(F......| -orderer.example.com | 00000010 f4 29 54 46 7e b5 de 41 4e 49 69 fa e8 65 8d 98 |.)TF~..ANIi..e..| -orderer.example.com | [97e 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c5 7d c9 7a b9 c5 c2 91 98 f6 55 |0E.!..}.z......U| -orderer.example.com | 00000010 73 4c d8 7a d9 6f 73 eb 5c 52 61 a7 c2 3a 70 1d |sL.z.os.\Ra..:p.| -orderer.example.com | 00000020 37 a9 1c a3 7b 02 20 6b 5e 12 f9 47 60 2f 68 41 |7...{. k^..G`/hA| -orderer.example.com | 00000030 b3 2c 3f e3 aa 5b 82 95 4f 80 c5 96 13 70 c8 43 |.,?..[..O....p.C| -orderer.example.com | 00000040 c1 47 db 83 4a 97 5d |.G..J.]| -orderer.example.com | [97f 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 principal evaluation succeeds for identity 0 -orderer.example.com | [980 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138648 gate 1515120666440156200 evaluation succeeds -orderer.example.com | [981 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [982 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [983 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [984 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [985 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [986 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [987 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b54fc0) start: > stop: > from 172.18.0.7:47276 -orderer.example.com | [988 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [989 01-05 02:51:06.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=[26078] -orderer.example.com | [98a 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34225], Going to peek [8] bytes -orderer.example.com | [98b 01-05 02:51:06.44 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 | [98c 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [98d 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b54fc0) for 172.18.0.7:47276 -orderer.example.com | [98e 01-05 02:51:06.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.7:47276 for (0xc420b54fc0) -orderer.example.com | [990 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [991 01-05 02:51:06.44 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 | [98f 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47276 -orderer.example.com | [993 01-05 02:51:06.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.7:47276 -orderer.example.com | [992 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [994 01-05 02:51:06.44 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 | [995 01-05 02:51:06.45 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47276: rpc error: code = Canceled desc = context canceled -orderer.example.com | [996 01-05 02:51:06.45 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [997 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [998 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47278 -orderer.example.com | [999 01-05 02:51:06.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:47278 -orderer.example.com | [99a 01-05 02:51:06.60 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 | [99b 01-05 02:51:06.60 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 | [99c 01-05 02:51:06.60 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 | [99d 01-05 02:51:06.60 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 | [99e 01-05 02:51:06.60 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 | [99f 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c8 gate 1515120666608567100 evaluation starts -orderer.example.com | [9a0 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9a1 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9a2 01-05 02:51:06.60 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 | [9a3 01-05 02:51:06.60 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 | [9a4 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 principal matched by identity 0 -orderer.example.com | [9a5 01-05 02:51:06.61 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 45 79 fe d9 6c f0 34 5d 07 1d 4e b8 6f fd fb e7 |Ey..l.4]..N.o...| -orderer.example.com | 00000010 ab 76 91 b3 e5 c1 fc 18 20 3d 75 72 86 4b 12 09 |.v...... =ur.K..| -orderer.example.com | [9a6 01-05 02:51:06.61 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 94 ce e5 79 3f 11 81 48 b2 62 d8 |0E.!....y?..H.b.| -orderer.example.com | 00000010 e3 5e 0f 1b 91 ee 32 d3 88 08 a8 39 f0 4a 24 7f |.^....2....9.J$.| -orderer.example.com | 00000020 03 6b c1 06 6c 02 20 4c 40 18 e9 bd 3e 47 c4 e6 |.k..l. L@...>G..| -orderer.example.com | 00000030 44 4f b4 81 29 6d f3 d4 50 dc 4e af a9 81 cc 2a |DO..)m..P.N....*| -orderer.example.com | 00000040 36 4d 79 dd 16 23 49 |6My..#I| -orderer.example.com | [9a7 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 principal evaluation succeeds for identity 0 -orderer.example.com | [9a8 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c8 gate 1515120666608567100 evaluation succeeds -orderer.example.com | [9a9 01-05 02:51:06.61 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 | [9aa 01-05 02:51:06.61 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 | [9ab 01-05 02:51:06.61 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 | [9ac 01-05 02:51:06.61 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 | [9ad 01-05 02:51:06.61 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 | [9ae 01-05 02:51:06.61 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 | [9af 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5ce60) start: > stop: > from 172.18.0.7:47278 -orderer.example.com | [9b0 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [9b1 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [9b2 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60303], Going to peek [8] bytes -orderer.example.com | [9b3 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [9b4 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] -orderer.example.com | [9b5 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5ce60) for 172.18.0.7:47278 -orderer.example.com | [9b6 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47278 for (0xc420a5ce60) -orderer.example.com | [9b7 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47278 -orderer.example.com | [9b9 01-05 02:51:06.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:47278 -orderer.example.com | [9b8 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9ba 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9bb 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9bc 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9bd 01-05 02:51:06.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47278: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9be 01-05 02:51:06.62 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [9bf 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [9c0 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47280 -orderer.example.com | [9c1 01-05 02:51:06.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:47280 -orderer.example.com | [9c2 01-05 02:51:06.83 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 | [9c3 01-05 02:51:06.83 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 | [9c4 01-05 02:51:06.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 | [9c5 01-05 02:51:06.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 | [9c6 01-05 02:51:06.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 | [9c7 01-05 02:51:06.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 0xc42000e318 gate 1515120666836482100 evaluation starts -orderer.example.com | [9c8 01-05 02:51:06.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 0xc42000e318 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9c9 01-05 02:51:06.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 0xc42000e318 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9ca 01-05 02:51:06.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 | [9cb 01-05 02:51:06.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 | [9cc 01-05 02:51:06.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 0xc42000e318 principal matched by identity 0 -orderer.example.com | [9cd 01-05 02:51:06.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 0a 59 9e b2 16 8c 97 f3 ed 26 21 0a 52 63 81 1d |.Y.......&!.Rc..| -orderer.example.com | 00000010 f5 92 d6 6e b6 6a 7d f1 3e 40 ff f9 e8 4d 72 a7 |...n.j}.>@...Mr.| -orderer.example.com | [9ce 01-05 02:51:06.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 45 ac d2 0f 58 f3 37 46 2d 20 55 76 |0D. E...X.7F- Uv| -orderer.example.com | 00000010 cb cd e8 36 82 b7 a9 bc e7 c2 46 6e 93 e3 06 ca |...6......Fn....| -orderer.example.com | 00000020 43 35 54 1e 02 20 1e 9e bb 1a 06 23 89 64 31 65 |C5T.. .....#.d1e| -orderer.example.com | 00000030 69 6e f9 de 33 61 eb 65 8e a0 e4 86 11 91 95 0a |in..3a.e........| -orderer.example.com | 00000040 24 4e 2c e7 41 f1 |$N,.A.| -orderer.example.com | [9cf 01-05 02:51:06.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 0xc42000e318 principal evaluation succeeds for identity 0 -orderer.example.com | [9d0 01-05 02:51:06.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 0xc42000e318 gate 1515120666836482100 evaluation succeeds -orderer.example.com | [9d1 01-05 02:51:06.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 | [9d2 01-05 02:51:06.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 | [9d3 01-05 02:51:06.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 | [9d4 01-05 02:51:06.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 | [9d5 01-05 02:51:06.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 | [9d6 01-05 02:51:06.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 | [9d7 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5d880) start: > stop: > from 172.18.0.7:47280 -orderer.example.com | [9d8 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [9d9 01-05 02:51:06.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=[12121] -orderer.example.com | [9da 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48182], Going to peek [8] bytes -orderer.example.com | [9db 01-05 02:51:06.84 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]} -orderer.example.com | [9dc 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -orderer.example.com | [9dd 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5d880) for 172.18.0.7:47280 -orderer.example.com | [9de 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47280 for (0xc420a5d880) -orderer.example.com | [9df 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47280 -orderer.example.com | [9e1 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47280 -orderer.example.com | [9e0 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9e2 01-05 02:51:06.84 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 | [9e3 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9e4 01-05 02:51:06.84 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 | [9e5 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47280: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9e6 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [9e7 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [9e8 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47282 -orderer.example.com | [9e9 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47282 -orderer.example.com | [9ea 01-05 02:51:06.96 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 | [9eb 01-05 02:51:06.96 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 | [9ec 01-05 02:51:06.96 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 | [9ed 01-05 02:51:06.96 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 | [9ee 01-05 02:51:06.96 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 | [9ef 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e360 gate 1515120666965932800 evaluation starts -orderer.example.com | [9f0 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9f1 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9f2 01-05 02:51:06.96 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 | [9f3 01-05 02:51:06.96 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 | [9f4 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 principal matched by identity 0 -orderer.example.com | [9f5 01-05 02:51:06.96 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 3c 6d 68 dd 3c 84 84 44 7a d4 52 e0 54 6f 65 |. DEBU Verify: sig = 00000000 30 45 02 21 00 86 7e 7a 6b c2 c0 b9 1f 46 d0 f3 |0E.!..~zk....F..| -orderer.example.com | 00000010 ba d6 80 a9 52 31 0b 8b 81 bb de a6 63 13 35 cd |....R1......c.5.| -orderer.example.com | 00000020 3c 93 bc ec 09 02 20 76 6e 2c 50 99 66 2e 84 3a |<..... vn,P.f..:| -orderer.example.com | 00000030 5a c6 09 d6 20 b5 1d 6c c7 e1 16 83 96 01 b4 72 |Z... ..l.......r| -orderer.example.com | 00000040 23 eb 62 db b5 e8 81 |#.b....| -orderer.example.com | [9f7 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 principal evaluation succeeds for identity 0 -orderer.example.com | [9f8 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e360 gate 1515120666965932800 evaluation succeeds -orderer.example.com | [9f9 01-05 02:51:06.96 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 | [9fa 01-05 02:51:06.96 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 | [9fb 01-05 02:51:06.96 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 | [9fc 01-05 02:51:06.97 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 | [9fd 01-05 02:51:06.97 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 | [9fe 01-05 02:51:06.97 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 | [9ff 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b64320) start: > stop: > from 172.18.0.7:47282 -orderer.example.com | [a00 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a01 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26078] -orderer.example.com | [a02 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34225], Going to peek [8] bytes -orderer.example.com | [a03 01-05 02:51:06.97 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 | [a04 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [a05 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b64320) for 172.18.0.7:47282 -orderer.example.com | [a06 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47282 for (0xc420b64320) -orderer.example.com | [a08 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a09 01-05 02:51:06.97 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 | [a0a 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a0b 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a07 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47282 -orderer.example.com | [a0c 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47282 -orderer.example.com | [a0d 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47282: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a0e 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a0f 01-05 02:51:07.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a10 01-05 02:51:07.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47284 -orderer.example.com | [a11 01-05 02:51:07.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47284 -orderer.example.com | [a12 01-05 02:51:07.14 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 | [a13 01-05 02:51:07.14 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 | [a14 01-05 02:51:07.14 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 | [a15 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a16 01-05 02:51:07.14 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 | [a17 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3a8 gate 1515120667142678300 evaluation starts -orderer.example.com | [a18 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a19 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a1a 01-05 02:51:07.14 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 | [a1b 01-05 02:51:07.14 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 | [a1c 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 principal matched by identity 0 -orderer.example.com | [a1d 01-05 02:51:07.14 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 21 a1 ab 53 1a c0 37 13 ed 25 f8 c9 0c bd ee 5a |!..S..7..%.....Z| -orderer.example.com | 00000010 29 dc 34 62 47 7e aa 61 86 12 61 7b 87 8b 7c 3c |).4bG~.a..a{..|<| -orderer.example.com | [a1e 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8f ce f7 c5 78 c5 4e 59 b0 4c 16 |0E.!.....x.NY.L.| -orderer.example.com | 00000010 a1 6f 25 84 1b c4 83 3c 39 93 3f 6f d9 bb e4 98 |.o%....<9.?o....| -orderer.example.com | 00000020 9a f1 dd 82 e7 02 20 1d af 91 d6 d7 30 17 e8 54 |...... .....0..T| -orderer.example.com | 00000030 97 f8 64 55 de be a0 90 41 6e 02 ae d2 fe a3 77 |..dU....An.....w| -orderer.example.com | 00000040 25 30 af 12 1d 5e 82 |%0...^.| -orderer.example.com | [a1f 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 principal evaluation succeeds for identity 0 -orderer.example.com | [a20 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3a8 gate 1515120667142678300 evaluation succeeds -orderer.example.com | [a21 01-05 02:51:07.14 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 | [a22 01-05 02:51:07.14 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 | [a23 01-05 02:51:07.14 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 | [a24 01-05 02:51:07.14 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 | [a25 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a26 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a27 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b64c60) start: > stop: > from 172.18.0.7:47284 -orderer.example.com | [a28 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a29 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40093] -orderer.example.com | [a2a 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20210], Going to peek [8] bytes -orderer.example.com | [a2b 01-05 02:51:07.14 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 | [a2c 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -orderer.example.com | [a2d 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b64c60) for 172.18.0.7:47284 -orderer.example.com | [a2e 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47284 for (0xc420b64c60) -orderer.example.com | [a2f 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47284 -orderer.example.com | [a31 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47284 -orderer.example.com | [a30 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a32 01-05 02:51:07.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 | [a33 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a34 01-05 02:51:07.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 | [a35 01-05 02:51:07.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47284: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a36 01-05 02:51:07.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a37 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a38 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47286 -orderer.example.com | [a39 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47286 -orderer.example.com | [a3a 01-05 02:51:07.28 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 | [a3b 01-05 02:51:07.28 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 | [a3c 01-05 02:51:07.28 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 | [a3d 01-05 02:51:07.28 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 | [a3e 01-05 02:51:07.28 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 | [a3f 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386e0 gate 1515120667288876500 evaluation starts -orderer.example.com | [a40 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a41 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a42 01-05 02:51:07.28 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 | [a43 01-05 02:51:07.28 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 | [a44 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 principal matched by identity 0 -orderer.example.com | [a45 01-05 02:51:07.29 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 a7 32 a8 e3 ce 23 9f 14 6b a7 0f a7 da f8 3b e3 |.2...#..k.....;.| -orderer.example.com | 00000010 a7 dc c3 c2 fd 3c ac 1a 3c 34 6e 34 75 1f 1a f4 |.....<..<4n4u...| -orderer.example.com | [a46 01-05 02:51:07.29 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 fa a8 df d7 97 ed a7 e1 2b cf 9d |0E.!.........+..| -orderer.example.com | 00000010 f5 5c 04 bb d6 60 c9 20 ac 0e ae 0a 1d 2a 3d 64 |.\...`. .....*=d| -orderer.example.com | 00000020 91 99 75 01 ba 02 20 30 76 c5 ec 84 9c ad af 46 |..u... 0v......F| -orderer.example.com | 00000030 79 ef 39 14 8a 73 c5 66 24 1c 4a 41 35 fc e7 83 |y.9..s.f$.JA5...| -orderer.example.com | 00000040 f7 0b dd 94 a2 06 14 |.......| -orderer.example.com | [a47 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 principal evaluation succeeds for identity 0 -orderer.example.com | [a48 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386e0 gate 1515120667288876500 evaluation succeeds -orderer.example.com | [a49 01-05 02:51:07.29 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 | [a4a 01-05 02:51:07.29 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 | [a4b 01-05 02:51:07.29 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 | [a4c 01-05 02:51:07.29 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 | [a4d 01-05 02:51:07.29 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 | [a4e 01-05 02:51:07.29 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 | [a4f 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42023a1c0) start: > stop: > from 172.18.0.7:47286 -orderer.example.com | [a50 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a51 01-05 02:51:07.29 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 | [a52 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14891], Going to peek [8] bytes -orderer.example.com | [a53 01-05 02:51:07.29 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 | [a54 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] -orderer.example.com | [a55 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42023a1c0) for 172.18.0.7:47286 -orderer.example.com | [a56 01-05 02:51:07.29 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:47286 for (0xc42023a1c0) -orderer.example.com | [a58 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a59 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a5a 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a5b 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a57 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47286 -orderer.example.com | [a5c 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47286 -orderer.example.com | [a5d 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47286: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a5e 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a5f 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a60 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47288 -orderer.example.com | [a61 01-05 02:51:07.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.7:47288 -orderer.example.com | [a62 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a63 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a64 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a65 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a66 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a67 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138738 gate 1515120667508069000 evaluation starts -orderer.example.com | [a68 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a69 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a6a 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [a6b 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [a6c 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 principal matched by identity 0 -orderer.example.com | [a6d 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5a 7d da 0f 8c 3a bd 4f b2 90 2f c7 b8 d2 76 36 |Z}...:.O../...v6| -orderer.example.com | 00000010 62 e3 33 8a f9 9f 66 45 53 98 5e 65 fa b7 6a 9f |b.3...fES.^e..j.| -orderer.example.com | [a6e 01-05 02:51:07.51 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 2a 52 7d 3f b8 97 71 2a 38 b1 1b 4c |0D. *R}?..q*8..L| -orderer.example.com | 00000010 c2 16 0b 19 3d 97 2e 27 98 72 d2 0d 11 73 67 03 |....=..'.r...sg.| -orderer.example.com | 00000020 c4 9e ae 3b 02 20 47 f3 3d f5 52 b2 4e 1f 19 35 |...;. G.=.R.N..5| -orderer.example.com | 00000030 dc 4c 90 63 4f 7d 3b a7 d4 2c 88 5d c1 a8 62 7d |.L.cO};..,.]..b}| -orderer.example.com | 00000040 ed f3 09 22 79 77 |..."yw| -orderer.example.com | [a6f 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 principal evaluation succeeds for identity 0 -orderer.example.com | [a70 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138738 gate 1515120667508069000 evaluation succeeds -orderer.example.com | [a71 01-05 02:51:07.51 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 | [a72 01-05 02:51:07.51 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 | [a73 01-05 02:51:07.51 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 | [a74 01-05 02:51:07.51 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 | [a75 01-05 02:51:07.51 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 | [a76 01-05 02:51:07.51 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 | [a77 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42023afa0) start: > stop: > from 172.18.0.7:47288 -orderer.example.com | [a78 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a79 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50737] -orderer.example.com | [a7a 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9566], Going to peek [8] bytes -orderer.example.com | [a7b 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4779], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} -orderer.example.com | [a7c 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4779] read from file [0] -orderer.example.com | [a7d 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42023afa0) for 172.18.0.7:47288 -orderer.example.com | [a7e 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47288 for (0xc42023afa0) -orderer.example.com | [a7f 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47288 -orderer.example.com | [a81 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a82 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a80 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47288 -orderer.example.com | [a83 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a84 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a85 01-05 02:51:07.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47288: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a86 01-05 02:51:07.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a87 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a88 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47290 -orderer.example.com | [a89 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47290 -orderer.example.com | [a8a 01-05 02:51:07.69 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 | [a8b 01-05 02:51:07.69 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 | [a8c 01-05 02:51:07.69 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 | [a8d 01-05 02:51:07.69 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 | [a8e 01-05 02:51:07.69 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 | [a8f 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e400 gate 1515120667699009400 evaluation starts -orderer.example.com | [a90 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a91 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a92 01-05 02:51:07.69 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 | [a93 01-05 02:51:07.69 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 | [a94 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 principal matched by identity 0 -orderer.example.com | [a95 01-05 02:51:07.70 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 1b fa 77 eb 1f e2 54 fb 67 36 2a f6 e2 ae 64 29 |..w...T.g6*...d)| -orderer.example.com | 00000010 13 a2 64 4f 7e a6 79 2c 95 8a e9 96 ea 45 63 fa |..dO~.y,.....Ec.| -orderer.example.com | [a96 01-05 02:51:07.70 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 22 fd d4 8f 5a 91 c6 01 10 5e a4 c6 |0D. "...Z....^..| -orderer.example.com | 00000010 c5 dc ea a6 f4 f7 1b 53 7b 20 77 bc 7d 5c 50 08 |.......S{ w.}\P.| -orderer.example.com | 00000020 92 77 09 4d 02 20 74 d9 23 0a 94 66 83 d4 fa 11 |.w.M. t.#..f....| -orderer.example.com | 00000030 0c 15 2e 92 69 48 0f 13 8d 14 f9 52 6e 3b d5 51 |....iH.....Rn;.Q| -orderer.example.com | 00000040 26 ae 41 0a c4 99 |&.A...| -orderer.example.com | [a97 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 principal evaluation succeeds for identity 0 -orderer.example.com | [a98 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e400 gate 1515120667699009400 evaluation succeeds -orderer.example.com | [a99 01-05 02:51:07.70 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 | [a9a 01-05 02:51:07.70 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 | [a9b 01-05 02:51:07.70 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 | [a9c 01-05 02:51:07.70 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 | [a9d 01-05 02:51:07.70 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 | [a9e 01-05 02:51:07.70 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 | [a9f 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b65fa0) start: > stop: > from 172.18.0.7:47290 -orderer.example.com | [aa0 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [aa1 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] -orderer.example.com | [aa2 01-05 02:51:07.70 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 | [aa3 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -orderer.example.com | [aa4 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -orderer.example.com | [aa5 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65fa0) for 172.18.0.7:47290 -orderer.example.com | [aa6 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47290 for (0xc420b65fa0) -orderer.example.com | [aa7 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47290 -orderer.example.com | [aa8 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47290 -orderer.example.com | [aa9 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [aaa 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [aab 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [aac 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [aad 01-05 02:51:07.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47290: rpc error: code = Canceled desc = context canceled -orderer.example.com | [aae 01-05 02:51:07.71 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [aaf 01-05 02:51:07.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [ab0 01-05 02:51:07.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:47292 -orderer.example.com | [ab1 01-05 02:51:07.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:47292 -orderer.example.com | [ab2 01-05 02:51:07.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 | [ab3 01-05 02:51:07.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 | [ab4 01-05 02:51:07.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 | [ab5 01-05 02:51:07.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 | [ab6 01-05 02:51:07.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 | [ab7 01-05 02:51:07.92 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 | [ab8 01-05 02:51:07.92 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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [ab9 01-05 02:51:07.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 0xc420138790 gate 1515120667928409100 evaluation starts -orderer.example.com | [aba 01-05 02:51:07.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 0xc420138790 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [abb 01-05 02:51:07.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 0xc420138790 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [abc 01-05 02:51:07.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 | [abd 01-05 02:51:07.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 | [abe 01-05 02:51:07.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 0xc420138790 principal matched by identity 0 -orderer.example.com | [abf 01-05 02:51:07.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 7e 3a 81 5d 80 a3 1d 11 f4 de af c6 ae fd 6b 5f |~:.]..........k_| -orderer.example.com | 00000010 22 7d a6 6c 10 ff e5 3b 59 e6 82 a2 b4 82 52 56 |"}.l...;Y.....RV| -orderer.example.com | [ac0 01-05 02:51:07.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 44 02 20 09 2a 55 e6 c3 39 4a 57 0d 84 3c 89 |0D. .*U..9JW..<.| -orderer.example.com | 00000010 2f c7 47 93 77 fe be 14 84 d0 4c 7b 02 45 57 42 |/.G.w.....L{.EWB| -orderer.example.com | 00000020 24 e6 62 9a 02 20 4f f9 d5 e8 78 27 aa 12 56 60 |$.b.. O...x'..V`| -orderer.example.com | 00000030 3a 8f 27 cc a2 c5 f0 86 74 6b a4 e2 63 6e da 6b |:.'.....tk..cn.k| -orderer.example.com | 00000040 93 e8 0e b1 4a a7 |....J.| -orderer.example.com | [ac1 01-05 02:51:07.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 0xc420138790 principal evaluation succeeds for identity 0 -orderer.example.com | [ac2 01-05 02:51:07.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 0xc420138790 gate 1515120667928409100 evaluation succeeds -orderer.example.com | [ac3 01-05 02:51:07.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 | [ac4 01-05 02:51:07.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 | [ac5 01-05 02:51:07.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 | [ac6 01-05 02:51:07.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 | [ac7 01-05 02:51:07.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 | [ac8 01-05 02:51:07.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 | [ac9 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202e6b00) start: > stop: > from 172.18.0.7:47292 -orderer.example.com | [aca 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [acb 01-05 02:51:07.93 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 | [acc 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14861], Going to peek [8] bytes -orderer.example.com | [acd 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14859], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [ace 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14859] read from file [0] -orderer.example.com | [acf 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202e6b00) for 172.18.0.7:47292 -orderer.example.com | [ad0 01-05 02:51:07.94 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:47292 for (0xc4202e6b00) -orderer.example.com | [ad1 01-05 02:51:07.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47292 -orderer.example.com | [ad2 01-05 02:51:07.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:47292 -orderer.example.com | [ad3 01-05 02:51:07.94 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.6:7050->172.18.0.7:47292: read: connection reset by peer -orderer.example.com | [ad4 01-05 02:51:07.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47292: rpc error: code = Canceled desc = context canceled -orderer.example.com | [ad5 01-05 02:51:07.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [ad6 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [ad7 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47294 -orderer.example.com | [ad8 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47294 -orderer.example.com | [ad9 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [ada 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [adb 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [adc 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [add 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [ade 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1515120668217551000 evaluation starts -orderer.example.com | [adf 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ae0 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ae1 01-05 02:51:08.21 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 | [ae2 01-05 02:51:08.21 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 | [ae3 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 -orderer.example.com | [ae4 01-05 02:51:08.21 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 83 79 c0 0b 20 9b 53 29 b5 63 27 46 2b 89 6f 26 |.y.. .S).c'F+.o&| -orderer.example.com | 00000010 61 af 72 ee 54 37 4f 48 ee 5e 2c 08 98 0c d0 22 |a.r.T7OH.^,...."| -orderer.example.com | [ae5 01-05 02:51:08.21 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 95 d7 f7 7c 23 0c 7b ec 21 9d 4d |0E.!....|#.{.!.M| -orderer.example.com | 00000010 94 a7 e5 23 02 e7 73 92 aa cf cb 4c 95 8f cd 34 |...#..s....L...4| -orderer.example.com | 00000020 21 0a 1c 58 4d 02 20 35 1e ae 5d ef 7c 8b b9 48 |!..XM. 5..].|..H| -orderer.example.com | 00000030 00 b8 19 00 ec c9 b5 ba 8b 1d 90 98 41 ac a1 3a |............A..:| -orderer.example.com | 00000040 17 3a 90 76 79 a4 e8 |.:.vy..| -orderer.example.com | [ae6 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 -orderer.example.com | [ae7 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1515120668217551000 evaluation succeeds -orderer.example.com | [ae8 01-05 02:51:08.21 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 | [ae9 01-05 02:51:08.21 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 | [aea 01-05 02:51:08.21 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 | [aeb 01-05 02:51:08.21 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 | [aec 01-05 02:51:08.21 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 | [aed 01-05 02:51:08.21 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 | [aee 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420b642a0) start: > stop: > from 172.18.0.7:47294 -orderer.example.com | [aef 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [af0 01-05 02:51:08.21 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 | [af1 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14861], Going to peek [8] bytes -orderer.example.com | [af2 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14859], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [af3 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14859] read from file [0] -orderer.example.com | [af4 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420b642a0) for 172.18.0.7:47294 -orderer.example.com | [af5 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:47294 for (0xc420b642a0) -orderer.example.com | [af6 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47294 -orderer.example.com | [af7 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47294 -orderer.example.com | [af8 01-05 02:51:08.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 == -orderer.example.com | [af9 01-05 02:51:08.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 | [afa 01-05 02:51:08.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/Orderer/Readers == -orderer.example.com | [afb 01-05 02:51:08.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 -orderer.example.com | [afc 01-05 02:51:08.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/Orderer/OrdererOrg/Readers == -orderer.example.com | [afd 01-05 02:51:08.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 0xc420138478 gate 1515120668224600900 evaluation starts -orderer.example.com | [afe 01-05 02:51:08.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 0xc420138478 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [aff 01-05 02:51:08.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 0xc420138478 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b00 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [b01 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [b02 01-05 02:51:08.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 0xc420138478 principal matched by identity 0 -orderer.example.com | [b03 01-05 02:51:08.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 45 81 f8 d0 2e 9d 2f 91 58 e9 6f b3 2e bd 8a 58 |E...../.X.o....X| -orderer.example.com | 00000010 1e ee 9a 4c 50 61 c3 ce 59 6b 45 73 37 59 df 7e |...LPa..YkEs7Y.~| -orderer.example.com | [b04 01-05 02:51:08.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 24 84 62 b0 79 84 75 d2 90 bc a9 ad |0D. $.b.y.u.....| -orderer.example.com | 00000010 f5 39 84 74 4c 33 19 be 1d 3f f8 78 67 2b 82 a2 |.9.tL3...?.xg+..| -orderer.example.com | 00000020 41 b1 7c c1 02 20 61 8a 05 2e 69 49 54 f9 9b ef |A.|.. a...iIT...| -orderer.example.com | 00000030 87 74 44 43 16 1c f2 34 bb a2 ce a2 62 c2 92 21 |.tDC...4....b..!| -orderer.example.com | 00000040 c8 7a 98 9d a3 15 |.z....| -orderer.example.com | [b05 01-05 02:51:08.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 0xc420138478 principal evaluation succeeds for identity 0 -orderer.example.com | [b06 01-05 02:51:08.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 0xc420138478 gate 1515120668224600900 evaluation succeeds -orderer.example.com | [b07 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b08 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b09 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [b0a 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [b0b 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [b0c 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [b0d 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420513340) start: > stop: > from 172.18.0.7:47294 -orderer.example.com | [b0e 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b0f 01-05 02:51:08.22 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 | [b10 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24015], Going to peek [8] bytes -orderer.example.com | [b11 01-05 02:51:08.22 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 | [b12 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [b13 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420513340) for 172.18.0.7:47294 -orderer.example.com | [b14 01-05 02:51:08.23 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:47294 for (0xc420513340) -orderer.example.com | [b15 01-05 02:51:08.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47294 -orderer.example.com | [b16 01-05 02:51:08.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47294 -orderer.example.com | [b17 01-05 02:51:08.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47294: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b18 01-05 02:51:08.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b19 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b1a 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47296 -orderer.example.com | [b1b 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47296 -orderer.example.com | [b1c 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [b1d 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b1e 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b1f 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b20 01-05 02:51:08.38 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 | [b21 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e150 gate 1515120668380789800 evaluation starts -orderer.example.com | [b22 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b23 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b24 01-05 02:51:08.38 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 | [b25 01-05 02:51:08.38 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 | [b26 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 principal matched by identity 0 -orderer.example.com | [b27 01-05 02:51:08.38 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 22 c7 38 e9 16 12 4a f2 dc 6b b6 07 77 c8 d4 8c |".8...J..k..w...| -orderer.example.com | 00000010 ed 7d 1f d1 aa ab 99 7d 9b ea 3f 69 e1 61 74 1b |.}.....}..?i.at.| -orderer.example.com | [b28 01-05 02:51:08.38 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 ad 69 41 35 8a 81 39 1c 05 94 ba |0E.!..iA5..9....| -orderer.example.com | 00000010 da 3f 79 f3 ad f6 a5 d9 d4 02 7d 85 a7 ed 76 da |.?y.......}...v.| -orderer.example.com | 00000020 4e 42 6e 85 9b 02 20 56 63 d6 03 0e d1 15 5c d9 |NBn... Vc.....\.| -orderer.example.com | 00000030 73 39 f2 ba 50 c4 0a bf 0a 91 2d b4 0d 03 38 35 |s9..P.....-...85| -orderer.example.com | 00000040 86 f7 6c 49 7b d6 68 |..lI{.h| -orderer.example.com | [b29 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 principal evaluation succeeds for identity 0 -orderer.example.com | [b2a 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e150 gate 1515120668380789800 evaluation succeeds -orderer.example.com | [b2b 01-05 02:51:08.38 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 | [b2c 01-05 02:51:08.38 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 | [b2d 01-05 02:51:08.38 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 | [b2e 01-05 02:51:08.38 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 | [b2f 01-05 02:51:08.38 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 | [b30 01-05 02:51:08.38 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 | [b31 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420b64cc0) start: > stop: > from 172.18.0.7:47296 -orderer.example.com | [b32 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b33 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [b34 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24015], Going to peek [8] bytes -orderer.example.com | [b35 01-05 02:51:08.38 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 | [b36 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [b37 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420b64cc0) for 172.18.0.7:47296 -orderer.example.com | [b38 01-05 02:51:08.38 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:47296 for (0xc420b64cc0) -orderer.example.com | [b39 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47296 -orderer.example.com | [b3a 01-05 02:51:08.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:47296 -orderer.example.com | [b3b 01-05 02:51:08.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47296: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b3c 01-05 02:51:08.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b3d 01-05 02:51:08.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b3e 01-05 02:51:08.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47298 -orderer.example.com | [b3f 01-05 02:51:08.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47298 -orderer.example.com | [b40 01-05 02:51:08.69 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 | [b41 01-05 02:51:08.69 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 | [b42 01-05 02:51:08.69 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 | [b43 01-05 02:51:08.69 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 | [b44 01-05 02:51:08.69 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 | [b45 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385d8 gate 1515120668693995000 evaluation starts -orderer.example.com | [b46 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b47 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b48 01-05 02:51:08.69 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 | [b49 01-05 02:51:08.69 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 | [b4a 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 principal matched by identity 0 -orderer.example.com | [b4b 01-05 02:51:08.69 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 64 76 ea b5 36 d5 59 64 57 4d 41 41 38 51 de |.dv..6.YdWMAA8Q.| -orderer.example.com | 00000010 83 cc de f9 e1 c5 8e 7c f5 74 08 81 82 90 cb 10 |.......|.t......| -orderer.example.com | [b4c 01-05 02:51:08.69 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 6b 43 b5 79 1a 08 38 dc 3a 73 d4 7b |0D. kC.y..8.:s.{| -orderer.example.com | 00000010 e3 f4 69 fa e9 86 3f 97 1c e1 ad 37 5c 6d 59 c6 |..i...?....7\mY.| -orderer.example.com | 00000020 eb 36 6f 33 02 20 48 42 ac e0 2c 06 ff b2 a4 17 |.6o3. HB..,.....| -orderer.example.com | 00000030 e3 c4 c1 ae 99 bd 76 70 60 d2 1d 41 5a dc d4 2b |......vp`..AZ..+| -orderer.example.com | 00000040 a2 8a 13 56 d3 92 |...V..| -orderer.example.com | [b4d 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 principal evaluation succeeds for identity 0 -orderer.example.com | [b4e 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385d8 gate 1515120668693995000 evaluation succeeds -orderer.example.com | [b4f 01-05 02:51:08.69 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 | [b50 01-05 02:51:08.69 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 | [b51 01-05 02:51:08.69 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 | [b52 01-05 02:51:08.69 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 | [b53 01-05 02:51:08.69 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 | [b54 01-05 02:51:08.69 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 | [b55 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420b54140) start: > stop: > from 172.18.0.7:47298 -orderer.example.com | [b56 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b57 01-05 02:51:08.69 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 | [b58 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14861], Going to peek [8] bytes -orderer.example.com | [b59 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14859], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [b5a 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14859] read from file [0] -orderer.example.com | [b5b 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420b54140) for 172.18.0.7:47298 -orderer.example.com | [b5c 01-05 02:51:08.70 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:47298 for (0xc420b54140) -orderer.example.com | [b5d 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47298 -orderer.example.com | [b5e 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47298 -orderer.example.com | [b5f 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47298: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b60 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b61 01-05 02:51:14.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b62 01-05 02:51:14.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:47310 -orderer.example.com | [b63 01-05 02:51:14.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:47310 -orderer.example.com | [b64 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [b65 01-05 02:51:14.74 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:47312 -orderer.example.com | [b66 01-05 02:51:14.74 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:47312 -orderer.example.com | [b67 01-05 02:51:14.74 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 | [b68 01-05 02:51:14.74 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 | [b69 01-05 02:51:14.74 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 | [b6a 01-05 02:51:14.74 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 | [b6b 01-05 02:51:14.74 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 | [b6c 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [b6d 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1515120674743225600 evaluation starts -orderer.example.com | [b6e 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b6f 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b70 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [b71 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation fails -orderer.example.com | [b72 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1515120674743225600 evaluation fails -orderer.example.com | [b73 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b74 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b75 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [b76 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [b77 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [b78 01-05 02:51:14.74 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 | [b79 01-05 02:51:14.74 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 | [b7a 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [b7b 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e268 gate 1515120674744781400 evaluation starts -orderer.example.com | [b7c 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b7d 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b7e 01-05 02:51:14.74 UTC] [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 | [b7f 01-05 02:51:14.74 UTC] [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 | [b80 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 principal matched by identity 0 -orderer.example.com | [b81 01-05 02:51:14.74 UTC] [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 0c 47 69 2e 34 8d aa 9c 95 9a 1f fa 96 46 80 18 |.Gi.4........F..| -orderer.example.com | 00000010 40 07 f2 a5 9a 52 05 a0 32 e8 5c 11 47 f9 36 2f |@....R..2.\.G.6/| -orderer.example.com | [b82 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 63 db b3 16 fd eb 40 c2 fc c8 ac b7 |0D. c.....@.....| -orderer.example.com | 00000010 d1 12 69 52 d4 b6 ee f6 93 48 c5 56 c3 04 ba d7 |..iR.....H.V....| -orderer.example.com | 00000020 7a 7c 2b 9b 02 20 78 6d 66 b3 69 2f 85 83 f9 4b |z|+.. xmf.i/...K| -orderer.example.com | 00000030 60 96 8a 02 2f 84 bc 45 4f 96 e2 c9 68 81 c6 88 |`.../..EO...h...| -orderer.example.com | 00000040 41 a9 52 62 1c de |A.Rb..| -orderer.example.com | [b83 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 principal evaluation succeeds for identity 0 -orderer.example.com | [b84 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e268 gate 1515120674744781400 evaluation succeeds -orderer.example.com | [b85 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [b86 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [b87 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [b88 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [b89 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [b8a 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [b8b 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [b8c 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [b8d 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [b8e 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [b8f 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [b90 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [b91 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [b92 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [b93 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [b94 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [b95 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [b96 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [b97 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [b98 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [b99 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [b9a 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 | [b9b 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 | [b9c 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 | [b9d 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 | [b9e 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 | [b9f 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 | [ba0 01-05 02:51:14.75 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 | [ba1 01-05 02:51:14.75 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 | [ba2 01-05 02:51:14.75 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 | [ba3 01-05 02:51:14.75 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 | [ba4 01-05 02:51:14.75 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 | [ba5 01-05 02:51:14.75 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 | [ba6 01-05 02:51:14.75 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 | [ba7 01-05 02:51:14.75 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 | [ba8 01-05 02:51:14.75 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 | [ba9 01-05 02:51:14.75 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 | [baa 01-05 02:51:14.75 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 | [bab 01-05 02:51:14.75 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 | [bac 01-05 02:51:14.75 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 | [bad 01-05 02:51:14.75 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 | [bae 01-05 02:51:14.75 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 | [baf 01-05 02:51:14.75 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 | [bb0 01-05 02:51:14.75 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 | [bb1 01-05 02:51:14.75 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 | [bb2 01-05 02:51:14.75 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 | [bb3 01-05 02:51:14.75 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 0xc420a5c500 gate 1515120674756876500 evaluation starts -orderer.example.com | [bb4 01-05 02:51:14.75 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 0xc420a5c500 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [bb5 01-05 02:51:14.75 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 0xc420a5c500 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bb6 01-05 02:51:14.75 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 | [bb7 01-05 02:51:14.75 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 0xc420a5c500 principal matched by identity 0 -orderer.example.com | [bb8 01-05 02:51:14.75 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 c7 89 8f 50 b9 97 18 31 de 5e d2 a8 b6 9c 76 24 |...P...1.^....v$| -orderer.example.com | 00000010 b9 31 e3 22 75 ac 77 13 15 ab 6f 3c b8 13 f0 d7 |.1."u.w...o<....| -orderer.example.com | [bb9 01-05 02:51:14.75 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 05 03 cd 7b 4f 4a cc dc ce 69 12 a2 |0D. ...{OJ...i..| -orderer.example.com | 00000010 a9 45 34 24 4d ad 24 d9 c3 a5 80 9b 2b 5c 73 0e |.E4$M.$.....+\s.| -orderer.example.com | 00000020 9b 19 46 ad 02 20 4a 3b e4 00 87 21 bb 68 97 52 |..F.. J;...!.h.R| -orderer.example.com | 00000030 1f fe 45 89 9f 45 c4 cd 9c d3 00 00 45 56 5c 25 |..E..E......EV\%| -orderer.example.com | 00000040 fb 83 24 be 13 33 |..$..3| -orderer.example.com | [bba 01-05 02:51:14.75 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 0xc420a5c500 principal evaluation succeeds for identity 0 -orderer.example.com | [bbb 01-05 02:51:14.75 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 0xc420a5c500 gate 1515120674756876500 evaluation succeeds -orderer.example.com | [bbc 01-05 02:51:14.76 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 | [bbd 01-05 02:51:14.76 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 | [bbe 01-05 02:51:14.76 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 | [bbf 01-05 02:51:14.76 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 | [bc0 01-05 02:51:14.76 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 0xc420a5c8e0 gate 1515120674761028800 evaluation starts -orderer.example.com | [bc1 01-05 02:51:14.76 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 0xc420a5c8e0 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [bc2 01-05 02:51:14.76 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 0xc420a5c8e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bc3 01-05 02:51:14.76 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 0xc420a5c8e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [bc4 01-05 02:51:14.76 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 0xc420a5c8e0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bc5 01-05 02:51:14.76 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 | [bc6 01-05 02:51:14.76 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 0xc420a5c8e0 principal matched by identity 1 -orderer.example.com | [bc7 01-05 02:51:14.76 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 7a 3c f4 20 e4 e5 5c 8c 5c c7 19 83 e4 54 b2 d9 |z<. ..\.\....T..| -orderer.example.com | 00000010 5a c8 7c 64 db 7f 6a c7 6b 02 35 0b 34 43 20 f1 |Z.|d..j.k.5.4C .| -orderer.example.com | [bc8 01-05 02:51:14.76 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 ec 95 8d 3d ef 79 4b 4d d9 d9 a5 |0E.!....=.yKM...| -orderer.example.com | 00000010 86 b2 71 be 46 70 ef 98 17 ad 7a 8c 8f f8 03 ca |..q.Fp....z.....| -orderer.example.com | 00000020 3c f1 36 bd cc 02 20 73 85 10 01 9b 12 1c b5 6f |<.6... s.......o| -orderer.example.com | 00000030 5f 70 87 6d a8 7d 65 90 c3 2d 22 b5 17 69 a6 7f |_p.m.}e..-"..i..| -orderer.example.com | 00000040 98 f4 21 b5 54 f5 56 |..!.T.V| -orderer.example.com | [bc9 01-05 02:51:14.76 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 0xc420a5c8e0 principal evaluation succeeds for identity 1 -orderer.example.com | [bca 01-05 02:51:14.76 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 0xc420a5c8e0 gate 1515120674761028800 evaluation succeeds -orderer.example.com | [bcb 01-05 02:51:14.76 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 | [bcc 01-05 02:51:14.76 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 | [bcd 01-05 02:51:14.76 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 | [bce 01-05 02:51:14.76 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 | [bcf 01-05 02:51:14.76 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 | [bd0 01-05 02:51:14.76 UTC] [github.com/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 | [bd1 01-05 02:51:14.76 UTC] [github.com/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 | [bd2 01-05 02:51:14.76 UTC] [github.com/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 | [bd3 01-05 02:51:14.76 UTC] [github.com/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 | [bd4 01-05 02:51:14.76 UTC] [github.com/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 | [bd5 01-05 02:51:14.76 UTC] [github.com/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 | [bd6 01-05 02:51:14.76 UTC] [github.com/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 | [bd7 01-05 02:51:14.76 UTC] [github.com/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 | [bd8 01-05 02:51:14.76 UTC] [github.com/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 | [bd9 01-05 02:51:14.76 UTC] [github.com/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 | [bda 01-05 02:51:14.76 UTC] [github.com/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 | [bdb 01-05 02:51:14.76 UTC] [github.com/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 | [bdc 01-05 02:51:14.76 UTC] [github.com/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 | [bdd 01-05 02:51:14.76 UTC] [github.com/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 | [bde 01-05 02:51:14.76 UTC] [github.com/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 | [bdf 01-05 02:51:14.76 UTC] [github.com/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 | [be0 01-05 02:51:14.76 UTC] [github.com/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 | [be1 01-05 02:51:14.76 UTC] [github.com/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 | [be2 01-05 02:51:14.76 UTC] [github.com/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 | [be3 01-05 02:51:14.76 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 | [be4 01-05 02:51:14.76 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 | [be5 01-05 02:51:14.76 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 | [be6 01-05 02:51:14.76 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 | [be7 01-05 02:51:14.76 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 | [be8 01-05 02:51:14.76 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 | [be9 01-05 02:51:14.76 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 | [bea 01-05 02:51:14.76 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 | [beb 01-05 02:51:14.76 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 | [bec 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [bed 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [bee 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [bef 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [bf0 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [bf1 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bf2 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [bf3 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [bf4 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [bf5 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [bf6 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [bf7 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | 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 | [bf8 01-05 02:51:14.77 UTC] [github.com/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 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -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 -orderer.example.com | R0L5Jr8878bLU6IcEA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bf9 01-05 02:51:14.77 UTC] [github.com/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 | [bfa 01-05 02:51:14.77 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 | [bfb 01-05 02:51:14.77 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 | [bfc 01-05 02:51:14.77 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 | [bfd 01-05 02:51:14.77 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 | [bfe 01-05 02:51:14.77 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 | [bff 01-05 02:51:14.77 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 | [c00 01-05 02:51:14.77 UTC] [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 | [c01 01-05 02:51:14.77 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 | [c02 01-05 02:51:14.77 UTC] [github.com/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 | [c03 01-05 02:51:14.77 UTC] [github.com/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 | 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 | [c04 01-05 02:51:14.77 UTC] [github.com/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 -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 | [c05 01-05 02:51:14.77 UTC] [github.com/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 | [c06 01-05 02:51:14.77 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 | [c07 01-05 02:51:14.77 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 | [c08 01-05 02:51:14.77 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 | [c09 01-05 02:51:14.77 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 | [c0a 01-05 02:51:14.77 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 | [c0b 01-05 02:51:14.77 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 | [c0c 01-05 02:51:14.77 UTC] [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 | [c0d 01-05 02:51:14.77 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 | [c0e 01-05 02:51:14.77 UTC] [github.com/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 | [c0f 01-05 02:51:14.77 UTC] [github.com/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 -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 | [c10 01-05 02:51:14.77 UTC] [github.com/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 -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 | [c11 01-05 02:51:14.77 UTC] [github.com/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 | [c12 01-05 02:51:14.77 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 | [c13 01-05 02:51:14.77 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 | [c14 01-05 02:51:14.77 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 | [c15 01-05 02:51:14.77 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 | [c16 01-05 02:51:14.77 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 | [c17 01-05 02:51:14.77 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 | [c18 01-05 02:51:14.77 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 | [c19 01-05 02:51:14.77 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 | [c1a 01-05 02:51:14.77 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 | [c1b 01-05 02:51:14.77 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 | [c1c 01-05 02:51:14.77 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 | [c1d 01-05 02:51:14.77 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 | [c1e 01-05 02:51:14.77 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 | [c1f 01-05 02:51:14.77 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 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c20 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c21 01-05 02:51:14.77 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 | [c22 01-05 02:51:14.77 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 | [c23 01-05 02:51:14.77 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 | [c24 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [c25 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [c26 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [c27 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [c28 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [c29 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [c2a 01-05 02:51:14.78 UTC] [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 | [c2b 01-05 02:51:14.78 UTC] [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 | [c2c 01-05 02:51:14.78 UTC] [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 | [c2d 01-05 02:51:14.78 UTC] [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 | [c2e 01-05 02:51:14.78 UTC] [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 | [c2f 01-05 02:51:14.78 UTC] [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 | [c30 01-05 02:51:14.78 UTC] [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 | [c31 01-05 02:51:14.78 UTC] [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 | [c32 01-05 02:51:14.78 UTC] [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 | [c33 01-05 02:51:14.78 UTC] [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 | [c34 01-05 02:51:14.78 UTC] [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 | [c35 01-05 02:51:14.78 UTC] [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 | [c36 01-05 02:51:14.78 UTC] [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 | [c37 01-05 02:51:14.78 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 | [c38 01-05 02:51:14.78 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 | [c39 01-05 02:51:14.78 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 | [c3a 01-05 02:51:14.78 UTC] [github.com/hyperledger/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 | [c3b 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/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 | [c3c 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/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 | [c3d 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c3e 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [c3f 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c40 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c41 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c42 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c43 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c44 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c45 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c46 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c47 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c48 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c49 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c4a 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 | [c4b 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 | [c4c 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c4d 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c4e 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c4f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c50 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c51 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 | [c52 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c53 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c54 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c55 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c56 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c57 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 | [c58 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c59 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c5a 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c5b 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c5c 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 | [c5d 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c5e 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c5f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 | [c60 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c61 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c62 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c63 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c64 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c65 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c66 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c67 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 | [c68 01-05 02:51:14.79 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 | [c69 01-05 02:51:14.79 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 | [c6a 01-05 02:51:14.79 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 | [c6b 01-05 02:51:14.79 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 | [c6c 01-05 02:51:14.79 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 | [c6d 01-05 02:51:14.79 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 | [c6e 01-05 02:51:14.79 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 | [c6f 01-05 02:51:14.79 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 | [c70 01-05 02:51:14.79 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 | [c71 01-05 02:51:14.79 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 | [c72 01-05 02:51:14.79 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 | [c73 01-05 02:51:14.79 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 | [c74 01-05 02:51:14.79 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 | [c75 01-05 02:51:14.79 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 | [c76 01-05 02:51:14.79 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 | [c77 01-05 02:51:14.79 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 | [c78 01-05 02:51:14.79 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 | [c79 01-05 02:51:14.79 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 | [c7a 01-05 02:51:14.79 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 | [c7b 01-05 02:51:14.79 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 | [c7c 01-05 02:51:14.79 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 | [c7d 01-05 02:51:14.79 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 | [c7e 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608A2D0BBD20522...BC454F96E2C96881C68841A952621CDE -orderer.example.com | [c7f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: FFAD0C7BFE158D9D19A9DD65F98E00B6DBD63401B593FA751E5C97C703D54B48 -orderer.example.com | [c80 01-05 02:51:14.79 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 | [c81 01-05 02:51:14.79 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 | [c82 01-05 02:51:14.79 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 | [c83 01-05 02:51:14.79 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 | [c84 01-05 02:51:14.79 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 | [c85 01-05 02:51:14.79 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 | [c86 01-05 02:51:14.79 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 -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR -orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA -orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY -orderer.example.com | V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 -orderer.example.com | SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c87 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138848 gate 1515120674798460600 evaluation starts -orderer.example.com | [c88 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c89 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c8a 01-05 02:51:14.79 UTC] [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 | [c8b 01-05 02:51:14.79 UTC] [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 | [c8c 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 principal matched by identity 0 -orderer.example.com | [c8d 01-05 02:51:14.79 UTC] [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 ff ad 0c 7b fe 15 8d 9d 19 a9 dd 65 f9 8e 00 b6 |...{.......e....| -orderer.example.com | 00000010 db d6 34 01 b5 93 fa 75 1e 5c 97 c7 03 d5 4b 48 |..4....u.\....KH| -orderer.example.com | [c8e 01-05 02:51:14.79 UTC] [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 c2 b0 08 0c 8c 1b 20 bb 1d d2 7d |0E.!....... ...}| -orderer.example.com | 00000010 ac c5 71 c1 b3 01 52 4e 47 36 9d 49 b2 44 f8 9a |..q...RNG6.I.D..| -orderer.example.com | 00000020 e7 eb 85 57 d6 02 20 43 b5 46 d0 03 c8 b3 a1 c1 |...W.. C.F......| -orderer.example.com | 00000030 cd 94 2e 3c 37 b8 55 4e 78 4a dd c3 a7 3b 9c 08 |...<7.UNxJ...;..| -orderer.example.com | 00000040 97 94 71 8e 11 60 12 |..q..`.| -orderer.example.com | [c8f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 principal evaluation succeeds for identity 0 -orderer.example.com | [c90 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138848 gate 1515120674798460600 evaluation succeeds -orderer.example.com | [c91 01-05 02:51:14.79 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 | [c92 01-05 02:51:14.79 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 | [c93 01-05 02:51:14.79 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 | [c94 01-05 02:51:14.79 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 | [c95 01-05 02:51:14.79 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 | [c96 01-05 02:51:14.79 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 | [c97 01-05 02:51:14.79 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:47312 -orderer.example.com | [c98 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47312: rpc error: code = Canceled desc = context canceled -orderer.example.com | [c99 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [c9a 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47310: rpc error: code = Canceled desc = context canceled -orderer.example.com | [c9b 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [c9c 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [c9d 01-05 02:51:14.80 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 | [c9e 01-05 02:51:14.80 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 | [c9f 01-05 02:51:14.80 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 | [ca0 01-05 02:51:14.80 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 | [ca1 01-05 02:51:14.80 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 | [ca2 01-05 02:51:14.80 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 | [ca3 01-05 02:51:14.80 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 | [ca4 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [ca5 01-05 02:51:14.80 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 | [ca6 01-05 02:51:14.80 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 | [ca7 01-05 02:51:14.80 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 | [ca8 01-05 02:51:14.80 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 | [ca9 01-05 02:51:14.80 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 | [caa 01-05 02:51:14.80 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 | [cab 01-05 02:51:14.80 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 | [cac 01-05 02:51:14.80 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-05 02:51:14.80 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 | [cae 01-05 02:51:14.80 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 | [caf 01-05 02:51:14.80 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-05 02:51:14.80 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-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -orderer.example.com | [cb2 01-05 02:51:14.80 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 | [cb3 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [cb4 01-05 02:51:14.80 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 | [cb5 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -orderer.example.com | [cb6 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [cb7 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [cb8 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [cb9 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [cba 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [cbb 01-05 02:51:14.80 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 | [cbc 01-05 02:51:14.80 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 | [cbd 01-05 02:51:14.80 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 | [cbe 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -orderer.example.com | [cbf 01-05 02:51:14.80 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 | [cc0 01-05 02:51:14.80 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 | [cc1 01-05 02:51:14.80 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 | [cc2 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d74e0 gate 1515120674809570600 evaluation starts -orderer.example.com | [cc3 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [cc4 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [cc5 01-05 02:51:14.81 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 | [cc6 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 principal matched by identity 0 -orderer.example.com | [cc7 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c7 89 8f 50 b9 97 18 31 de 5e d2 a8 b6 9c 76 24 |...P...1.^....v$| -orderer.example.com | 00000010 b9 31 e3 22 75 ac 77 13 15 ab 6f 3c b8 13 f0 d7 |.1."u.w...o<....| -orderer.example.com | [cc8 01-05 02:51:14.81 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 05 03 cd 7b 4f 4a cc dc ce 69 12 a2 |0D. ...{OJ...i..| -orderer.example.com | 00000010 a9 45 34 24 4d ad 24 d9 c3 a5 80 9b 2b 5c 73 0e |.E4$M.$.....+\s.| -orderer.example.com | 00000020 9b 19 46 ad 02 20 4a 3b e4 00 87 21 bb 68 97 52 |..F.. J;...!.h.R| -orderer.example.com | 00000030 1f fe 45 89 9f 45 c4 cd 9c d3 00 00 45 56 5c 25 |..E..E......EV\%| -orderer.example.com | 00000040 fb 83 24 be 13 33 |..$..3| -orderer.example.com | [cc9 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 principal evaluation succeeds for identity 0 -orderer.example.com | [cca 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d74e0 gate 1515120674809570600 evaluation succeeds -orderer.example.com | [ccb 01-05 02:51:14.81 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 | [ccc 01-05 02:51:14.81 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 | [ccd 01-05 02:51:14.81 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 | [cce 01-05 02:51:14.81 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 | [ccf 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d7840 gate 1515120674811658600 evaluation starts -orderer.example.com | [cd0 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [cd1 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [cd2 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [cd3 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [cd4 01-05 02:51:14.81 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 | [cd5 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 principal matched by identity 1 -orderer.example.com | [cd6 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7a 3c f4 20 e4 e5 5c 8c 5c c7 19 83 e4 54 b2 d9 |z<. ..\.\....T..| -orderer.example.com | 00000010 5a c8 7c 64 db 7f 6a c7 6b 02 35 0b 34 43 20 f1 |Z.|d..j.k.5.4C .| -orderer.example.com | [cd7 01-05 02:51:14.81 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 ec 95 8d 3d ef 79 4b 4d d9 d9 a5 |0E.!....=.yKM...| -orderer.example.com | 00000010 86 b2 71 be 46 70 ef 98 17 ad 7a 8c 8f f8 03 ca |..q.Fp....z.....| -orderer.example.com | 00000020 3c f1 36 bd cc 02 20 73 85 10 01 9b 12 1c b5 6f |<.6... s.......o| -orderer.example.com | 00000030 5f 70 87 6d a8 7d 65 90 c3 2d 22 b5 17 69 a6 7f |_p.m.}e..-"..i..| -orderer.example.com | 00000040 98 f4 21 b5 54 f5 56 |..!.T.V| -orderer.example.com | [cd8 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 principal evaluation succeeds for identity 1 -orderer.example.com | [cd9 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d7840 gate 1515120674811658600 evaluation succeeds -orderer.example.com | [cda 01-05 02:51:14.81 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 | [cdb 01-05 02:51:14.81 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 | [cdc 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -orderer.example.com | [cdd 01-05 02:51:14.81 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 | [cde 01-05 02:51:14.81 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 | [cdf 01-05 02:51:14.81 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 | [ce0 01-05 02:51:14.81 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 | [ce1 01-05 02:51:14.81 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 | [ce2 01-05 02:51:14.81 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 | [ce3 01-05 02:51:14.81 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 | [ce4 01-05 02:51:14.81 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 | [ce5 01-05 02:51:14.81 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 | [ce6 01-05 02:51:14.81 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 | [ce7 01-05 02:51:14.81 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 | [ce8 01-05 02:51:14.81 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 | [ce9 01-05 02:51:14.81 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 | [cea 01-05 02:51:14.81 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 | [ceb 01-05 02:51:14.81 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 | [cec 01-05 02:51:14.81 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 | [ced 01-05 02:51:14.81 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 | [cee 01-05 02:51:14.81 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 | [cef 01-05 02:51:14.81 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 | [cf0 01-05 02:51:14.81 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 | [cf1 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [cf2 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [cf3 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [cf4 01-05 02:51:14.81 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 | [cf5 01-05 02:51:14.81 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 | [cf6 01-05 02:51:14.81 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 | [cf7 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [cf8 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [cf9 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [cfa 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [cfb 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [cfc 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [cfd 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [cfe 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [cff 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [d00 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [d01 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [d02 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [d03 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [d04 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [d05 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d06 01-05 02:51:14.81 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 | [d07 01-05 02:51:14.81 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 | [d08 01-05 02:51:14.81 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 | [d09 01-05 02:51:14.81 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 | [d0a 01-05 02:51:14.81 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 -orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d0b 01-05 02:51:14.81 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 -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d0c 01-05 02:51:14.81 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 | [d0d 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [d0e 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [d0f 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [d10 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [d11 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [d12 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d13 01-05 02:51:14.81 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 | [d14 01-05 02:51:14.81 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 | [d15 01-05 02:51:14.81 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 | [d16 01-05 02:51:14.81 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 | [d17 01-05 02:51:14.81 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 | [d18 01-05 02:51:14.81 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 -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 | [d19 01-05 02:51:14.81 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 -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -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 -orderer.example.com | R0L5Jr8878bLU6IcEA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d1a 01-05 02:51:14.81 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 | [d1b 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [d1c 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [d1d 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [d1e 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d1f 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -orderer.example.com | [d20 01-05 02:51:14.81 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 | [d21 01-05 02:51:14.81 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 | [d22 01-05 02:51:14.81 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 | [d23 01-05 02:51:14.81 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 | [d24 01-05 02:51:14.81 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 | [d25 01-05 02:51:14.81 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 | [d26 01-05 02:51:14.82 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 | [d27 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [d28 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [d29 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [d2a 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d2b 01-05 02:51:14.82 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 | [d2c 01-05 02:51:14.82 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 | [d2d 01-05 02:51:14.82 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 | [d2e 01-05 02:51:14.82 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 | [d2f 01-05 02:51:14.82 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 | [d30 01-05 02:51:14.82 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 | [d31 01-05 02:51:14.82 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 | [d32 01-05 02:51:14.82 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 | [d33 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -orderer.example.com | [d34 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -orderer.example.com | [d35 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [d36 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [d37 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [d38 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -orderer.example.com | [d39 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -orderer.example.com | [d3a 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -orderer.example.com | [d3b 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [d3c 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [d3d 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [d3e 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [d3f 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [d40 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [d41 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [d42 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [d43 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [d44 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [d45 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [d46 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [d47 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [d48 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [d49 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [d4a 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [d4b 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [d4c 01-05 02:51:14.82 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 | [d4d 01-05 02:51:14.82 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 | [d4e 01-05 02:51:14.82 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 | [d4f 01-05 02:51:14.82 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 | [d50 01-05 02:51:14.82 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 | [d51 01-05 02:51:14.82 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 | [d52 01-05 02:51:14.82 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 | [d53 01-05 02:51:14.82 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 | [d54 01-05 02:51:14.82 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 | [d55 01-05 02:51:14.82 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 | [d56 01-05 02:51:14.82 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 | [d57 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [d58 01-05 02:51:14.82 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 | [d59 01-05 02:51:14.82 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 | [d5a 01-05 02:51:14.82 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 | [d5b 01-05 02:51:14.82 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 | [d5c 01-05 02:51:14.82 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 | [d5d 01-05 02:51:14.82 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 | [d5e 01-05 02:51:14.82 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 | [d5f 01-05 02:51:14.82 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 | [d60 01-05 02:51:14.82 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 | [d61 01-05 02:51:14.82 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 | [d62 01-05 02:51:14.82 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 | [d63 01-05 02:51:14.82 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 | [d64 01-05 02:51:14.82 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 | [d65 01-05 02:51:14.82 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 | [d66 01-05 02:51:14.82 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 | [d67 01-05 02:51:14.82 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 | [d68 01-05 02:51:14.82 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 | [d69 01-05 02:51:14.82 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 | [d6a 01-05 02:51:14.82 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 | [d6b 01-05 02:51:14.82 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 | [d6c 01-05 02:51:14.83 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 | [d6d 01-05 02:51:14.83 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 | [d6e 01-05 02:51:14.83 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 | [d6f 01-05 02:51:14.83 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 | [d70 01-05 02:51:14.83 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 | [d71 01-05 02:51:14.83 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 | [d72 01-05 02:51:14.83 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 | [d73 01-05 02:51:14.83 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 | [d74 01-05 02:51:14.83 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 | [d75 01-05 02:51:14.83 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 | [d76 01-05 02:51:14.83 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 | [d77 01-05 02:51:14.83 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 | [d78 01-05 02:51:14.83 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 | [d79 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [d7a 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [d7b 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [d7c 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [d7d 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [d7e 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [d7f 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [d80 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [d81 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -orderer.example.com | [d82 01-05 02:51:14.83 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 | [d83 01-05 02:51:14.83 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 | [d84 01-05 02:51:14.83 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 | [d85 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [d86 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [d87 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [d88 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [d89 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [d8a 01-05 02:51:14.83 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 | [d8b 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [d8c 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d8d 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [d8e 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d8f 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B9BB6542663D6A8B68127B722E9F4258 -orderer.example.com | [d90 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 4C90D18B1BB0AE07037B02C34FE4EC6AF01B25D80F294FB24BF373190CFFF2F2 -orderer.example.com | [d91 01-05 02:51:14.83 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 | [d92 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [d93 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d94 01-05 02:51:14.83 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 | [d95 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | [d96 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d97 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...B9BB6542663D6A8B68127B722E9F4258 -orderer.example.com | [d98 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EA6C85A2D32DEAE4E60CC9931B42AC63D038096B649F78978EA9BA03FABD484D -orderer.example.com | [d99 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xce, 0x93, 0x4f, 0xbd, 0x9e, 0x8f, 0x46, 0x9e, 0xe8, 0x99, 0xbc, 0xa0, 0x6c, 0x19, 0xb9, 0xe3, 0x95, 0x93, 0xe9, 0xa6, 0x5, 0xd5, 0x4b, 0x7f, 0x4e, 0x5d, 0xd1, 0x32, 0x6c, 0x50, 0x6f, 0x92} txOffsets= -orderer.example.com | txId= locPointer=offset=71, bytesLength=19402 -orderer.example.com | ] -orderer.example.com | [d9a 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81571], isChainEmpty=[false], lastBlockNumber=[7] -orderer.example.com | [d9b 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 -orderer.example.com | [d9c 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [d9e 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [d9d 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -orderer.example.com | [d9f 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -orderer.example.com | [da1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -orderer.example.com | [da0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -orderer.example.com | [da2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -orderer.example.com | [da3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -orderer.example.com | [da4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [da5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [da6 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [da8 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [da9 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [da7 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [daa 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [dab 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [dac 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [dad 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [dae 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [daf 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw -orderer.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 -orderer.example.com | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF -orderer.example.com | +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk -orderer.example.com | oOWGb8BDg2Tnm3LS -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [db0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [db1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515120674846685200 evaluation starts -orderer.example.com | [db2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [db3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [db4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [db5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal evaluation fails -orderer.example.com | [db6 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515120674846685200 evaluation fails -orderer.example.com | [db7 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [db8 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [db9 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [dba 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120674847114200 evaluation starts -orderer.example.com | [dbb 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [dbc 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [dbd 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) -orderer.example.com | [dbe 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 principal evaluation fails -orderer.example.com | [dbf 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120674847114200 evaluation fails -orderer.example.com | [dc0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [dc1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [dc2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [dc3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1515120674847574600 evaluation starts -orderer.example.com | [dc4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [dc6 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [dc7 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [dc8 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [dc5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd -orderer.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -orderer.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U -orderer.example.com | V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB -orderer.example.com | IMM+3uC8p/M1qCSaOiQ= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [dc9 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal matched by identity 0 -orderer.example.com | [dca 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 15 9a 88 99 b5 a9 f4 86 d0 1d d8 13 35 3e dd |.............5>.| -orderer.example.com | 00000010 0a b4 47 09 02 81 6a 88 fd 3d 99 7b da db d3 c7 |..G...j..=.{....| -orderer.example.com | [dcb 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 97 41 cf 8b 0a 65 0c a9 ca 35 0f |0E.!..A...e...5.| -orderer.example.com | 00000010 65 36 ef f7 25 2e a8 3e 0b 7b 9c d0 3c e2 4b 4f |e6..%..>.{..<.KO| -orderer.example.com | 00000020 a8 75 37 49 e4 02 20 23 1b e4 e3 81 f1 cf 0b 83 |.u7I.. #........| -orderer.example.com | 00000030 93 29 14 a8 10 c8 25 ed ad 9e 38 ed 30 4c c3 26 |.)....%...8.0L.&| -orderer.example.com | 00000040 66 c2 c5 43 f8 06 a3 |f..C...| -orderer.example.com | [dcc 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal evaluation succeeds for identity 0 -orderer.example.com | [dcd 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1515120674847574600 evaluation succeeds -orderer.example.com | [dce 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [dcf 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [dd0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [dd1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [dd2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [dd3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [dd4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -orderer.example.com | [dd5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [dd6 01-05 02:51:14.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 0xc420138198 gate 1515120674854967900 evaluation starts -orderer.example.com | [dd7 01-05 02:51:14.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 0xc420138198 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [dd8 01-05 02:51:14.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 0xc420138198 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [dd9 01-05 02:51:14.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 -orderer.example.com | [dda 01-05 02:51:14.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 -orderer.example.com | [ddb 01-05 02:51:14.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 0xc420138198 principal matched by identity 0 -orderer.example.com | [ddc 01-05 02:51:14.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 fb 95 b2 6f 4f 60 c9 d3 96 27 d2 13 57 7a a4 13 |...oO`...'..Wz..| -orderer.example.com | 00000010 6f 54 80 9c 69 49 9d 38 68 10 82 0a e3 57 cb de |oT..iI.8h....W..| -orderer.example.com | [ddd 01-05 02:51:14.86 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 7e 75 74 a7 73 f0 d3 10 07 a8 cf d9 |0D. ~ut.s.......| -orderer.example.com | 00000010 bd 33 64 3d 36 47 c0 e0 0a a1 e6 96 ac 37 71 e9 |.3d=6G.......7q.| -orderer.example.com | 00000020 4e d2 21 63 02 20 12 7b 95 00 67 c2 c0 f7 c7 3a |N.!c. .{..g....:| -orderer.example.com | 00000030 9e 73 24 86 00 60 e3 f0 9c 98 3a 67 63 77 bc ee |.s$..`....:gcw..| -orderer.example.com | 00000040 99 8d 83 c2 0e 04 |......| -orderer.example.com | [dde 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138198 principal evaluation succeeds for identity 0 -orderer.example.com | [ddf 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138198 gate 1515120674854967900 evaluation succeeds -orderer.example.com | [de0 01-05 02:51:14.86 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 | [de1 01-05 02:51:14.86 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 | [de2 01-05 02:51:14.86 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 | [de3 01-05 02:51:14.86 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 | [de4 01-05 02:51:14.86 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 | [de5 01-05 02:51:14.86 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 | [de6 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -orderer.example.com | [de7 01-05 02:51:14.87 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 | [de8 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [de9 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47336 -orderer.example.com | [dea 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47336 -orderer.example.com | [deb 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [dec 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ded 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [dee 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [def 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [df0 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [df1 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [df2 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138428 gate 1515120677009870300 evaluation starts -orderer.example.com | [df3 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [df4 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [df5 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [df6 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 principal evaluation fails -orderer.example.com | [df7 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138428 gate 1515120677009870300 evaluation fails -orderer.example.com | [df8 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [df9 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [dfa 01-05 02:51:17.01 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 | [dfb 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138450 gate 1515120677011338600 evaluation starts -orderer.example.com | [dfc 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [dfd 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [dfe 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [dff 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 principal evaluation fails -orderer.example.com | [e00 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138450 gate 1515120677011338600 evaluation fails -orderer.example.com | [e01 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e02 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e03 01-05 02:51:17.01 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 | [e04 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138458 gate 1515120677014049500 evaluation starts -orderer.example.com | [e05 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e06 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e07 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [e08 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 principal evaluation fails -orderer.example.com | [e09 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138458 gate 1515120677014049500 evaluation fails -orderer.example.com | [e0a 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e0b 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e0c 01-05 02:51:17.01 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 Org3MSP.Readers Org1MSP.Readers ] -orderer.example.com | [e0d 01-05 02:51:17.01 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 | [e0e 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [e0f 01-05 02:51:17.01 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 | [e10 01-05 02:51:17.01 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 | [e11 01-05 02:51:17.01 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 | [e12 01-05 02:51:17.01 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 1515120677017802100 evaluation starts -orderer.example.com | [e13 01-05 02:51:17.01 UTC] [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 | [e14 01-05 02:51:17.01 UTC] [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 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e15 01-05 02:51:17.01 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 | [e16 01-05 02:51:17.01 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 | [e17 01-05 02:51:17.01 UTC] [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 | [e18 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 86 6f 62 a0 d0 6d 9e 18 ab 19 a0 8b 35 81 32 36 |.ob..m......5.26| -orderer.example.com | 00000010 2a 82 6e c9 c6 81 ad 70 3b 55 5e f8 01 1d 89 47 |*.n....p;U^....G| -orderer.example.com | [e19 01-05 02:51:17.02 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 8c b3 e2 56 de 89 9b 26 f1 9b 08 |0E.!....V...&...| -orderer.example.com | 00000010 18 42 f1 8f c5 7b 4e ea 7b e5 f4 e7 b8 48 dc a1 |.B...{N.{....H..| -orderer.example.com | 00000020 ad fe 65 2d ff 02 20 5b 3b bb cf 9e b0 c6 81 0f |..e-.. [;.......| -orderer.example.com | 00000030 93 a3 1d 27 44 50 43 5c 8d 44 fe be 63 1e 9b f8 |...'DPC\.D..c...| -orderer.example.com | 00000040 96 e6 c5 c1 b1 5f c0 |....._.| -orderer.example.com | [e1a 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 principal evaluation succeeds for identity 0 -orderer.example.com | [e1b 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138460 gate 1515120677017802100 evaluation succeeds -orderer.example.com | [e1c 01-05 02:51:17.02 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 | [e1d 01-05 02:51:17.02 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 | [e1e 01-05 02:51:17.02 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 | [e1f 01-05 02:51:17.02 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 | [e20 01-05 02:51:17.02 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 | [e21 01-05 02:51:17.02 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 | [e22 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5d340) start: > stop: > from 172.18.0.7:47336 -orderer.example.com | [e23 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [e24 01-05 02:51:17.02 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=[60303] -orderer.example.com | [e25 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -orderer.example.com | [e26 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -orderer.example.com | [e27 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -orderer.example.com | [e28 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5d340) for 172.18.0.7:47336 -orderer.example.com | [e29 01-05 02:51:17.02 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:47336 for (0xc420a5d340) -orderer.example.com | [e2b 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e2c 01-05 02:51:17.02 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 | [e2a 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47336 -orderer.example.com | [e2d 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e2f 01-05 02:51:17.03 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 | [e2e 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47336 -orderer.example.com | [e30 01-05 02:51:17.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47336: rpc error: code = Canceled desc = context canceled -orderer.example.com | [e31 01-05 02:51:17.03 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [e32 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [e33 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47338 -orderer.example.com | [e34 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47338 -orderer.example.com | [e35 01-05 02:51:17.25 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 | [e36 01-05 02:51:17.25 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 | [e37 01-05 02:51:17.25 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 | [e38 01-05 02:51:17.25 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 | [e39 01-05 02:51:17.25 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 | [e3a 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384f8 gate 1515120677255715200 evaluation starts -orderer.example.com | [e3b 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e3c 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e3d 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [e3e 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 principal evaluation fails -orderer.example.com | [e3f 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384f8 gate 1515120677255715200 evaluation fails -orderer.example.com | [e40 01-05 02:51:17.25 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 | [e41 01-05 02:51:17.25 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 | [e42 01-05 02:51:17.25 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 | [e43 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138500 gate 1515120677257770200 evaluation starts -orderer.example.com | [e44 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e45 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e46 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [e47 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 principal evaluation fails -orderer.example.com | [e48 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138500 gate 1515120677257770200 evaluation fails -orderer.example.com | [e49 01-05 02:51:17.25 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 | [e4a 01-05 02:51:17.25 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 | [e4b 01-05 02:51:17.26 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 | [e4c 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138510 gate 1515120677260208100 evaluation starts -orderer.example.com | [e4d 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e4e 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e4f 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [e50 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 principal evaluation fails -orderer.example.com | [e51 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138510 gate 1515120677260208100 evaluation fails -orderer.example.com | [e52 01-05 02:51:17.26 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 | [e53 01-05 02:51:17.26 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 | [e54 01-05 02:51:17.26 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 Org3MSP.Readers Org1MSP.Readers ] -orderer.example.com | [e55 01-05 02:51:17.26 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 | [e56 01-05 02:51:17.26 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 | [e57 01-05 02:51:17.26 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 | [e58 01-05 02:51:17.26 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 | [e59 01-05 02:51:17.26 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 | [e5a 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515120677263649400 evaluation starts -orderer.example.com | [e5b 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e5c 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e5d 01-05 02:51:17.26 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 | [e5e 01-05 02:51:17.26 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 | [e5f 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal matched by identity 0 -orderer.example.com | [e60 01-05 02:51:17.26 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 53 4c 33 20 13 47 1e 49 9f 9b 99 fd d0 78 fa 67 |SL3 .G.I.....x.g| -orderer.example.com | 00000010 ae 05 1c 91 f6 37 2f 76 68 11 7d 33 25 a5 3b a8 |.....7/vh.}3%.;.| -orderer.example.com | [e61 01-05 02:51:17.26 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 85 51 a6 0b 6d a7 cf 97 67 2a 68 |0E.!..Q..m...g*h| -orderer.example.com | 00000010 2c c5 3e bb 97 f1 dc c3 97 03 da 37 47 fc d3 00 |,.>........7G...| -orderer.example.com | 00000020 78 a2 c1 17 b6 02 20 71 7b 9a d5 5c 5e 66 24 79 |x..... q{..\^f$y| -orderer.example.com | 00000030 50 e5 4c 5f 24 d2 2a cf d5 58 4f 4e 19 42 ee 4c |P.L_$.*..XON.B.L| -orderer.example.com | 00000040 b2 58 45 26 9f 37 5d |.XE&.7]| -orderer.example.com | [e62 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal evaluation succeeds for identity 0 -orderer.example.com | [e63 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515120677263649400 evaluation succeeds -orderer.example.com | [e64 01-05 02:51:17.26 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 | [e65 01-05 02:51:17.26 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 | [e66 01-05 02:51:17.26 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 | [e67 01-05 02:51:17.26 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 | [e68 01-05 02:51:17.26 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 | [e69 01-05 02:51:17.26 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 | [e6a 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209ec740) start: > stop: > from 172.18.0.7:47338 -orderer.example.com | [e6b 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [e6c 01-05 02:51:17.26 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=[60303] -orderer.example.com | [e6d 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -orderer.example.com | [e6e 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -orderer.example.com | [e6f 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -orderer.example.com | [e70 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209ec740) for 172.18.0.7:47338 -orderer.example.com | [e71 01-05 02:51:17.26 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:47338 for (0xc4209ec740) -orderer.example.com | [e72 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47338 -orderer.example.com | [e74 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47338 -orderer.example.com | [e73 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e75 01-05 02:51:17.26 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 | [e76 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e77 01-05 02:51:17.26 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 | [e78 01-05 02:51:17.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47338: rpc error: code = Canceled desc = context canceled -orderer.example.com | [e79 01-05 02:51:17.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +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 +orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR +orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA +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 +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 +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 +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.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----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +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----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +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 +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 +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 +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 +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 +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 +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +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) +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 +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 +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 +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 +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 +orderer.example.com | 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd +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 | 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 +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} +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 +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +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 +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 +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 | 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 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +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" +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +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 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +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 +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 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF +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 +orderer.example.com | IJy8t//KkpCBNH4c9Mk+aUiVWxtwHocE8RGG6wIgV0wXUAj7zF1kM8R0oHPeIjO1 +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 +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 | 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 +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) +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 +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 +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} +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 +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 +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 +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 | 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 +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) +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 +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 +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 +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 | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +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 +orderer.example.com | R0L5Jr8878bLU6IcEA== +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' +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 +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 | ] +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 +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 +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 +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 +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +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----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh +orderer.example.com | kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= +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----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +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 | 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 | [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 | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +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 +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 | 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 | [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 | 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 | [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----- +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 | [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 | 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 | [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----- +orderer.example.com | MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMFgxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI +orderer.example.com | KoZIzj0DAQcDQgAEm3FstMyOLBRl+X1RTkIhXCtqxUMorGOnPlOAUDXb+wzVcJjR +orderer.example.com | oyBf68Cnr0UmXbsLTbSGh6yIg4lCskpSp+1yRKNNMEswDgYDVR0PAQH/BAQDAgeA +orderer.example.com | MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY +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 | MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +orderer.example.com | KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK +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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +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 | 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 | [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 | MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl +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 +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 | ] +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----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd +orderer.example.com | z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF +orderer.example.com | RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U +orderer.example.com | V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB +orderer.example.com | IMM+3uC8p/M1qCSaOiQ= +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 | MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEsiJh5ym9AOwC2/W8KTJx29J0V8P9HoKw +orderer.example.com | sRscjgHas+Eso1K2w6pyKFqs0y0fzIvqZUrHE5VPFlEaP912APdZd6NNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgO0Xwpbk24wk0 +orderer.example.com | RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +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 | MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +orderer.example.com | jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 +orderer.example.com | 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq +orderer.example.com | pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU +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 diff --git a/hyperledger_fabric/latest/solo/logs/dev_orderer.log b/hyperledger_fabric/latest/solo/logs/dev_orderer.log index 06842718..ac4f1d11 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/latest/solo/logs/dev_orderer.log @@ -1,21 +1,21 @@ -[001 01-05 02:50:21.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[002 01-05 02:50:21.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -[003 01-05 02:50:21.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[004 01-05 02:50:21.79 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 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[006 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -[007 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[008 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -[009 01-05 02:50:21.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00a 01-05 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -[00b 01-05 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[00c 01-05 02:50:21.80 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 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[00e 01-05 02:50:21.80 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 02:50:21.80 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 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -[011 01-05 02:50:21.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[012 01-05 02:50:21.80 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-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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -29,7 +29,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[013 01-05 02:50:21.80 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -42,7 +42,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[014 01-05 02:50:21.80 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----- +[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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -55,8 +55,8 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[015 01-05 02:50:21.80 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 02:50:21.81 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----- +[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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -69,59 +69,59 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[017 01-05 02:50:21.81 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 02:50:21.81 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 02:50:21.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -[01a 01-05 02:50:21.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -[01b 01-05 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 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 02:50:21.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4202764a0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[029 01-05 02:50:21.83 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 02:50:21.83 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= +[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= txId=7fc55cfddbadf5a38b89898b4cbe3922b6ab3033c53ac93290759902e560b661 locPointer=offset=38, bytesLength=9111 ] -[02b 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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----- +[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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -135,7 +135,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[04a 01-05 02:50:21.83 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -148,16 +148,16 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[04b 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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----- +[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 @@ -172,7 +172,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[055 01-05 02:50:21.83 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----- +[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 @@ -186,14 +186,14 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[056 01-05 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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 02:50:21.83 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----- +[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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -208,7 +208,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[05e 01-05 02:50:21.83 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----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -222,124 +222,124 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[05f 01-05 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 -[063 01-05 02:50:21.84 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 -[064 01-05 02:50:21.84 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 -[065 01-05 02:50:21.84 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 -[066 01-05 02:50:21.84 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 -[067 01-05 02:50:21.84 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 -[068 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -[069 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[06a 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[06b 01-05 02:50:21.84 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 -[06c 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[06d 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[06e 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[06f 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[070 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[071 01-05 02:50:21.84 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 -[072 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[073 01-05 02:50:21.84 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 -[074 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[075 01-05 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 -[07a 01-05 02:50:21.84 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 -[07b 01-05 02:50:21.84 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 -[07c 01-05 02:50:21.84 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 -[07d 01-05 02:50:21.84 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 -[07e 01-05 02:50:21.84 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 -[07f 01-05 02:50:21.84 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 -[080 01-05 02:50:21.84 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 -[081 01-05 02:50:21.84 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 -[082 01-05 02:50:21.84 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 -[083 01-05 02:50:21.84 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 -[084 01-05 02:50:21.84 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 -[085 01-05 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 -[088 01-05 02:50:21.84 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 -[089 01-05 02:50:21.84 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 -[08a 01-05 02:50:21.84 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 -[08b 01-05 02:50:21.84 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 -[08c 01-05 02:50:21.84 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 -[08d 01-05 02:50:21.84 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 -[08e 01-05 02:50:21.84 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 -[08f 01-05 02:50:21.84 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 -[090 01-05 02:50:21.84 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 -[091 01-05 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.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/Admins -[098 01-05 02:50:21.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 -[099 01-05 02:50:21.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 -[09a 01-05 02:50:21.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' -[09b 01-05 02:50:21.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' -[09c 01-05 02:50:21.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] -[09d 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[09e 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[09f 01-05 02:50:21.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] -[0a0 01-05 02:50:21.84 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0a1 01-05 02:50:21.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-05 02:50:21.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 [] -[0a3 01-05 02:50:21.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 -[0a4 01-05 02:50:21.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' -[0a5 01-05 02:50:21.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 -[0a6 01-05 02:50:21.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] -[0a7 01-05 02:50:21.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 -[0a8 01-05 02:50:21.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]} -[0a9 01-05 02:50:21.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] -[0aa 01-05 02:50:21.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) -[0ab 01-05 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.84 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 02:50:21.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]} -[0b1 01-05 02:50:21.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] -[0b2 01-05 02:50:21.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 -[0b3 01-05 02:50:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: +[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: Version: 1.1.0 Go version: go1.9.2 OS/Arch: linux/amd64 Experimental features: false -[0b4 01-05 02:50:21.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -[0b5 01-05 02:50:23.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[0b6 01-05 02:50:23.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47152 -[0b7 01-05 02:50:23.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47152 -[0b8 01-05 02:50:23.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[0b9 01-05 02:50:23.86 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:47154 -[0ba 01-05 02:50:23.86 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:47154 -[0bb 01-05 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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 02:50:23.86 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----- +[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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -353,7 +353,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[0d1 01-05 02:50:23.86 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -366,58 +366,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[0d2 01-05 02:50:23.86 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[0da 01-05 02:50:23.87 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 -[0db 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[0de 01-05 02:50:23.87 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 -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -oQmWQsjpiQ== ------END CERTIFICATE----- -[0df 01-05 02:50:23.87 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 -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -jTZ94VyvHhJOn4fshoU= ------END CERTIFICATE----- -[0e0 01-05 02:50:23.87 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 -[0e1 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[0e6 01-05 02:50:23.87 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 -[0e7 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[0ea 01-05 02:50:23.87 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----- +[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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -432,7 +393,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[0eb 01-05 02:50:23.87 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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -446,99 +407,32 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[0ec 01-05 02:50:23.87 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 -[0ed 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[0f0 01-05 02:50:23.87 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 -[0f1 01-05 02:50:23.87 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 -[0f2 01-05 02:50:23.87 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 -[0f3 01-05 02:50:23.87 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 -[0f4 01-05 02:50:23.87 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 -[0f5 01-05 02:50:23.87 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 -[0f6 01-05 02:50:23.87 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 -[0f7 01-05 02:50:23.87 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 -[0f8 01-05 02:50:23.87 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 -[0f9 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[0fe 01-05 02:50:23.87 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 -[0ff 01-05 02:50:23.87 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 -[100 01-05 02:50:23.87 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 -[101 01-05 02:50:23.87 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 -[102 01-05 02:50:23.87 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 -[103 01-05 02:50:23.87 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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 -[10b 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[10c 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[10d 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[10e 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[10f 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[110 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[111 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[112 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[113 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 -[117 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[118 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 -[119 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 UTC] [github.com/hyperledger/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 -[11c 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[11d 01-05 02:50:23.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[11e 01-05 02:50:23.87 UTC] [github.com/hyperledger/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 02:50:23.87 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 02:50:23.87 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 -[121 01-05 02:50:23.87 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 -[122 01-05 02:50:23.87 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 -[123 01-05 02:50:23.87 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 -[124 01-05 02:50:23.87 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 -[125 01-05 02:50:23.87 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 -[126 01-05 02:50:23.87 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 -[127 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[12a 01-05 02:50:23.87 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 -[12b 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[12f 01-05 02:50:23.87 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 -[130 01-05 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 02:50:23.87 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 -[136 01-05 02:50:23.87 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 02:50:23.87 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 -[138 01-05 02:50:23.87 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 -[139 01-05 02:50:23.87 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 -[13a 01-05 02:50:23.87 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 -[13b 01-05 02:50:23.87 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 [] -[13c 01-05 02:50:23.87 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 -[13d 01-05 02:50:23.87 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 -[13e 01-05 02:50:23.87 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] -[13f 01-05 02:50:23.88 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 -[140 01-05 02:50:23.88 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-05 02:50:23.88 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 [] -[142 01-05 02:50:23.88 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 -[143 01-05 02:50:23.88 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 -[144 01-05 02:50:23.88 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 == -[145 01-05 02:50:23.88 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 -[146 01-05 02:50:23.88 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 == -[147 01-05 02:50:23.88 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 -[148 01-05 02:50:23.88 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----- +[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----- +MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -552,62 +446,177 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[149 01-05 02:50:23.88 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 0xc420138128 gate 1515120623881479200 evaluation starts -[14a 01-05 02:50:23.89 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 0xc420138128 signed by 0 principal evaluation starts (used [false]) -[14b 01-05 02:50:23.89 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 0xc420138128 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[14c 01-05 02:50:23.89 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 -[14d 01-05 02:50:23.89 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 0xc420138128 principal matched by identity 0 -[14e 01-05 02:50:23.89 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 b0 25 59 62 0a 69 16 2d 1a 73 54 d6 c2 9c c1 40 |.%Yb.i.-.sT....@| -00000010 c8 cb 8f 54 00 f6 9c 7a b2 af 14 fd d9 59 88 7e |...T...z.....Y.~| -[14f 01-05 02:50:23.89 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 90 62 2c d6 17 93 c8 73 73 bc 59 |0E.!..b,....ss.Y| -00000010 29 40 e1 c8 2a b7 2b 92 f4 d1 46 46 e4 d4 d5 d0 |)@..*.+...FF....| -00000020 80 b1 59 cb 7c 02 20 51 ae 2e 20 9e 0b b9 0f 35 |..Y.|. Q.. ....5| -00000030 71 a6 31 79 ef d0 b4 8e db 72 a0 35 fe 8f e4 9e |q.1y.....r.5....| -00000040 c9 15 7c c8 d6 72 4e |..|..rN| -[150 01-05 02:50:23.89 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 0xc420138128 principal evaluation succeeds for identity 0 -[151 01-05 02:50:23.89 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 0xc420138128 gate 1515120623881479200 evaluation succeeds -[152 01-05 02:50:23.89 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 -[153 01-05 02:50:23.89 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 -[154 01-05 02:50:23.89 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 -[155 01-05 02:50:23.89 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 -[156 01-05 02:50:23.89 UTC] [github.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" -[157 01-05 02:50:23.89 UTC] [github.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" -[158 01-05 02:50:23.89 UTC] [github.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" -[159 01-05 02:50:23.89 UTC] [github.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" -[15a 01-05 02:50:23.89 UTC] [github.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" -[15b 01-05 02:50:23.89 UTC] [github.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" -[15c 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[15d 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[15e 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[15f 01-05 02:50:23.89 UTC] [github.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 02:50:23.89 UTC] [github.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 02:50:23.89 UTC] [github.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 02:50:23.89 UTC] [github.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" -[163 01-05 02:50:23.89 UTC] [github.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-05 02:50:23.89 UTC] [github.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-05 02:50:23.89 UTC] [github.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-05 02:50:23.89 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" -[167 01-05 02:50:23.89 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" -[168 01-05 02:50:23.89 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" -[169 01-05 02:50:23.89 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 -[16a 01-05 02:50:23.89 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 -[16b 01-05 02:50:23.89 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 -[16c 01-05 02:50:23.89 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 -[16d 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608EFCFBBD20522...A251ADEF21C4802241CDEDF56EFD0CBB -[16e 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: EFC2C0ED3E9E76C0E7FD804BBE49C49D06D257309484AC87BEA4C1E9FDF0960F -[16f 01-05 02:50:23.89 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 -[170 01-05 02:50:23.89 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 -[171 01-05 02:50:23.89 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 -[172 01-05 02:50:23.89 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 -[173 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608EFCFBBD20522...3F423143B96216E7F163254BFF0B4EBE -[174 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: C110CB5A51EC2C66DC9D34EF2ED53D5A7F4F2C752E8EED19293FB6C6023690D8 -[175 01-05 02:50:23.89 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 == -[176 01-05 02:50:23.89 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 -[177 01-05 02:50:23.89 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 == -[178 01-05 02:50:23.89 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 -[179 01-05 02:50:23.89 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 == -[17a 01-05 02:50:23.89 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 -[17b 01-05 02:50:23.89 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----- +[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----- +MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -620,47 +629,47 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[17c 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138590 gate 1515120623898642500 evaluation starts -[17d 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 signed by 0 principal evaluation starts (used [false]) -[17e 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[17f 01-05 02:50:23.89 UTC] [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 -[180 01-05 02:50:23.89 UTC] [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 -[181 01-05 02:50:23.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 principal matched by identity 0 -[182 01-05 02:50:23.90 UTC] [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 c1 10 cb 5a 51 ec 2c 66 dc 9d 34 ef 2e d5 3d 5a |...ZQ.,f..4...=Z| -00000010 7f 4f 2c 75 2e 8e ed 19 29 3f b6 c6 02 36 90 d8 |.O,u....)?...6..| -[183 01-05 02:50:23.90 UTC] [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 7b cb 49 5c fc ae f4 e1 7e 45 37 be |0D. {.I\....~E7.| -00000010 87 d7 f3 26 db bb 67 6b 00 cb a5 93 34 ec 19 92 |...&..gk....4...| -00000020 57 3d 44 49 02 20 42 92 70 b4 9e 99 03 e7 66 9b |W=DI. B.p.....f.| -00000030 02 f2 71 af 0c ad ec a6 94 7a c1 be 85 55 33 ff |..q......z...U3.| -00000040 58 ad af ea 00 96 |X.....| -[184 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138590 principal evaluation succeeds for identity 0 -[185 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138590 gate 1515120623898642500 evaluation succeeds -[186 01-05 02:50:23.90 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 -[187 01-05 02:50:23.90 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 -[188 01-05 02:50:23.90 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 -[189 01-05 02:50:23.90 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 -[18a 01-05 02:50:23.90 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 -[18b 01-05 02:50:23.90 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 -[18c 01-05 02:50:23.90 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 -[18d 01-05 02:50:23.90 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 -[18e 01-05 02:50:23.90 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 -[18f 01-05 02:50:23.90 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 -[190 01-05 02:50:23.90 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 -[191 01-05 02:50:23.90 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 -[192 01-05 02:50:23.90 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 -[193 01-05 02:50:23.90 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 -[194 01-05 02:50:23.90 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 -[195 01-05 02:50:23.90 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 -[196 01-05 02:50:23.90 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 -[197 01-05 02:50:23.90 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 -[198 01-05 02:50:23.90 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 -[199 01-05 02:50:23.90 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 -[19a 01-05 02:50:23.90 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 -[19b 01-05 02:50:23.90 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 -[19c 01-05 02:50:23.90 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 -[19d 01-05 02:50:23.90 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 -[19e 01-05 02:50:23.90 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 -[19f 01-05 02:50:23.90 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----- +[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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -674,7 +683,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[1a0 01-05 02:50:23.90 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -687,58 +696,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[1a1 01-05 02:50:23.90 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 -[1a2 01-05 02:50:23.90 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 -[1a3 01-05 02:50:23.90 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 -[1a4 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[1a5 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1a6 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[1a7 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1a8 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[1a9 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[1aa 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1ab 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[1ac 01-05 02:50:23.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[1ad 01-05 02:50:23.90 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 -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI -lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc -FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 -WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy -oQmWQsjpiQ== ------END CERTIFICATE----- -[1ae 01-05 02:50:23.90 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 -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -jTZ94VyvHhJOn4fshoU= ------END CERTIFICATE----- -[1af 01-05 02:50:23.90 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 -[1b0 01-05 02:50:23.90 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 -[1b1 01-05 02:50:23.90 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 -[1b2 01-05 02:50:23.90 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 -[1b3 01-05 02:50:23.90 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 -[1b4 01-05 02:50:23.90 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 -[1b5 01-05 02:50:23.90 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 -[1b6 01-05 02:50:23.90 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 -[1b7 01-05 02:50:23.90 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 -[1b8 01-05 02:50:23.90 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 -[1b9 01-05 02:50:23.90 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----- +[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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -753,7 +723,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[1ba 01-05 02:50:23.90 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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -767,256 +737,17 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[1bb 01-05 02:50:23.90 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 -[1bc 01-05 02:50:23.90 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) -[1bd 01-05 02:50:23.90 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 -[1be 01-05 02:50:23.90 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 -[1bf 01-05 02:50:23.90 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 -[1c0 01-05 02:50:23.90 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 -[1c1 01-05 02:50:23.90 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 -[1c2 01-05 02:50:23.90 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 -[1c3 01-05 02:50:23.90 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 -[1c4 01-05 02:50:23.90 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 -[1c5 01-05 02:50:23.90 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 -[1c6 01-05 02:50:23.90 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 -[1c7 01-05 02:50:23.90 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 -[1c8 01-05 02:50:23.90 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 -[1c9 01-05 02:50:23.90 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 -[1ca 01-05 02:50:23.90 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 -[1cb 01-05 02:50:23.90 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 -[1cc 01-05 02:50:23.90 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 -[1cd 01-05 02:50:23.90 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 -[1ce 01-05 02:50:23.90 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 -[1cf 01-05 02:50:23.90 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 -[1d0 01-05 02:50:23.90 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 -[1d1 01-05 02:50:23.90 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 -[1d2 01-05 02:50:23.91 UTC] [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 -[1d3 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1d4 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1d5 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1d6 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1d7 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1d8 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1d9 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1da 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1db 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1dc 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1dd 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1de 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1df 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e0 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e1 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e2 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e3 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e4 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e5 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e6 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e7 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e8 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1e9 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ea 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1eb 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ec 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ed 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[1ee 01-05 02:50:23.91 UTC] [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 -[1ef 01-05 02:50:23.91 UTC] [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 -[1f0 01-05 02:50:23.91 UTC] [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 -[1f1 01-05 02:50:23.91 UTC] [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 -[1f2 01-05 02:50:23.91 UTC] [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 -[1f3 01-05 02:50:23.91 UTC] [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 -[1f4 01-05 02:50:23.91 UTC] [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 -[1f5 01-05 02:50:23.91 UTC] [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 -[1f6 01-05 02:50:23.91 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 -[1f7 01-05 02:50:23.91 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 -[1f8 01-05 02:50:23.91 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 -[1f9 01-05 02:50:23.91 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 -[1fa 01-05 02:50:23.91 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 -[1fb 01-05 02:50:23.91 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 -[1fc 01-05 02:50:23.91 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 -[1fd 01-05 02:50:23.91 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 -[1fe 01-05 02:50:23.91 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[1ff 01-05 02:50:23.91 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 -[200 01-05 02:50:23.91 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 -[201 01-05 02:50:23.91 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 -[202 01-05 02:50:23.91 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 -[203 01-05 02:50:23.91 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 02:50:23.91 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 -[205 01-05 02:50:23.91 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 -[206 01-05 02:50:23.91 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 -[207 01-05 02:50:23.91 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 -[208 01-05 02:50:23.91 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 -[209 01-05 02:50:23.91 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 [] -[20a 01-05 02:50:23.91 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 -[20b 01-05 02:50:23.91 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 -[20c 01-05 02:50:23.91 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] -[20d 01-05 02:50:23.91 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 -[20e 01-05 02:50:23.91 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 -[20f 01-05 02:50:23.91 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 [] -[210 01-05 02:50:23.91 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 -[211 01-05 02:50:23.91 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 -[212 01-05 02:50:23.91 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 == -[213 01-05 02:50:23.91 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 -[214 01-05 02:50:23.91 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 == -[215 01-05 02:50:23.91 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 -[216 01-05 02:50:23.91 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 -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 -yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ -NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 -2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd -jTZ94VyvHhJOn4fshoU= ------END CERTIFICATE----- -[217 01-05 02:50:23.91 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 0xc4201394e0 gate 1515120623918634100 evaluation starts -[218 01-05 02:50:23.91 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 0xc4201394e0 signed by 0 principal evaluation starts (used [false]) -[219 01-05 02:50:23.91 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 0xc4201394e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[21a 01-05 02:50:23.91 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 0xc4201394e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[21b 01-05 02:50:23.91 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 0xc4201394e0 principal evaluation fails -[21c 01-05 02:50:23.91 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 0xc4201394e0 gate 1515120623918634100 evaluation fails -[21d 01-05 02:50:23.91 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 -[21e 01-05 02:50:23.91 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 -[21f 01-05 02:50:23.91 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 == -[220 01-05 02:50:23.91 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 0xc4201394f8 gate 1515120623919819800 evaluation starts -[221 01-05 02:50:23.91 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 0xc4201394f8 signed by 0 principal evaluation starts (used [false]) -[222 01-05 02:50:23.92 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 0xc4201394f8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[223 01-05 02:50:23.92 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 -[224 01-05 02:50:23.92 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 0xc4201394f8 principal matched by identity 0 -[225 01-05 02:50:23.92 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 b0 25 59 62 0a 69 16 2d 1a 73 54 d6 c2 9c c1 40 |.%Yb.i.-.sT....@| -00000010 c8 cb 8f 54 00 f6 9c 7a b2 af 14 fd d9 59 88 7e |...T...z.....Y.~| -[226 01-05 02:50:23.92 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 90 62 2c d6 17 93 c8 73 73 bc 59 |0E.!..b,....ss.Y| -00000010 29 40 e1 c8 2a b7 2b 92 f4 d1 46 46 e4 d4 d5 d0 |)@..*.+...FF....| -00000020 80 b1 59 cb 7c 02 20 51 ae 2e 20 9e 0b b9 0f 35 |..Y.|. Q.. ....5| -00000030 71 a6 31 79 ef d0 b4 8e db 72 a0 35 fe 8f e4 9e |q.1y.....r.5....| -00000040 c9 15 7c c8 d6 72 4e |..|..rN| -[227 01-05 02:50:23.92 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 0xc4201394f8 principal evaluation succeeds for identity 0 -[228 01-05 02:50:23.92 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 0xc4201394f8 gate 1515120623919819800 evaluation succeeds -[229 01-05 02:50:23.92 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 -[22a 01-05 02:50:23.92 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 -[22b 01-05 02:50:23.92 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 -[22c 01-05 02:50:23.92 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 -[22d 01-05 02:50:23.92 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 -[22e 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[22f 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[230 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[231 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[232 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[233 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[234 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[235 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[236 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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" -[237 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[238 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[239 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[23a 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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 02:50:23.92 UTC] [github.com/hyperledger/fabric/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-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/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-05 02:50:23.92 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" -[23f 01-05 02:50:23.92 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" -[240 01-05 02:50:23.92 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" -[241 01-05 02:50:23.92 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 -[242 01-05 02:50:23.92 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 -[243 01-05 02:50:23.92 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 -[244 01-05 02:50:23.92 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 -[245 01-05 02:50:23.92 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 -[246 01-05 02:50:23.92 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 -[247 01-05 02:50:23.92 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 -[248 01-05 02:50:23.92 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 -[249 01-05 02:50:23.92 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 -[24a 01-05 02:50:23.92 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 -[24b 01-05 02:50:23.92 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 -[24c 01-05 02:50:23.92 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 -[24d 01-05 02:50:23.92 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 -[24e 01-05 02:50:23.92 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 -[24f 01-05 02:50:23.92 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 -[250 01-05 02:50:23.92 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 -[251 01-05 02:50:23.92 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 -[252 01-05 02:50:23.92 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 -[253 01-05 02:50:23.92 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 -[254 01-05 02:50:23.92 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 -cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= ------END CERTIFICATE----- -[255 01-05 02:50:23.92 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 -bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU ------END CERTIFICATE----- -[256 01-05 02:50:23.92 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 -[257 01-05 02:50:23.92 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 -[258 01-05 02:50:23.92 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 -[259 01-05 02:50:23.92 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 -[25a 01-05 02:50:23.92 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 -[25b 01-05 02:50:23.92 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 -[25c 01-05 02:50:23.92 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 -[25d 01-05 02:50:23.92 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 -[25e 01-05 02:50:23.92 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 -[25f 01-05 02:50:23.92 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 -[260 01-05 02:50:23.92 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 -[261 01-05 02:50:23.92 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 -[262 01-05 02:50:23.92 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 -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA -tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA -Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly -HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P -vA2BLfriqQ== ------END CERTIFICATE----- -[263 01-05 02:50:23.92 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 -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2Mzla -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4NZhNAzOQyIpyvgBsVx4L7ckxv+H+DDl -3iS4avzBws1VytcYpmUQM7h7GvtT2c8bmN1PdPjlGBZrvpGGofSx2KNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg+ZUUvcR/BYVF -mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O -AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL -R0L5Jr8878bLU6IcEA== ------END CERTIFICATE----- -[264 01-05 02:50:23.92 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 -[265 01-05 02:50:23.92 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 -[266 01-05 02:50:23.92 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 -[267 01-05 02:50:23.92 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 -[268 01-05 02:50:23.92 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 -[269 01-05 02:50:23.92 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 -[26a 01-05 02:50:23.92 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 -[26b 01-05 02:50:23.92 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 -[26c 01-05 02:50:23.92 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 -[26d 01-05 02:50:23.92 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 -[26e 01-05 02:50:23.92 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----- +[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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1031,7 +762,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[26f 01-05 02:50:23.92 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----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1045,152 +776,99 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[270 01-05 02:50:23.92 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 -[271 01-05 02:50:23.92 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) -[272 01-05 02:50:23.92 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 -[273 01-05 02:50:23.92 UTC] [github.com/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 -[274 01-05 02:50:23.92 UTC] [github.com/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 -[275 01-05 02:50:23.92 UTC] [github.com/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 -[276 01-05 02:50:23.92 UTC] [github.com/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 -[277 01-05 02:50:23.92 UTC] [github.com/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 -[278 01-05 02:50:23.92 UTC] [github.com/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 -[279 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[27a 01-05 02:50:23.92 UTC] [github.com/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 -[27b 01-05 02:50:23.92 UTC] [github.com/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 -[27c 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[27d 01-05 02:50:23.92 UTC] [github.com/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 -[27e 01-05 02:50:23.92 UTC] [github.com/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 -[27f 01-05 02:50:23.92 UTC] [github.com/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 -[280 01-05 02:50:23.92 UTC] [github.com/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 -[281 01-05 02:50:23.92 UTC] [github.com/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 -[282 01-05 02:50:23.92 UTC] [github.com/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 -[283 01-05 02:50:23.92 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 -[284 01-05 02:50:23.92 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 -[285 01-05 02:50:23.92 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 -[286 01-05 02:50:23.92 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 -[287 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[288 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[289 01-05 02:50:23.92 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[28a 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[28b 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[28c 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[28d 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[28e 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[28f 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[290 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[291 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[292 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[293 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[294 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[295 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[296 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[297 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[298 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[299 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29a 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29b 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29c 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29d 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29e 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[29f 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a0 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a1 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a2 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a3 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a4 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[2a5 01-05 02:50:23.93 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 -[2a6 01-05 02:50:23.93 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 -[2a7 01-05 02:50:23.93 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 -[2a8 01-05 02:50:23.93 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 -[2a9 01-05 02:50:23.93 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 -[2aa 01-05 02:50:23.93 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 -[2ab 01-05 02:50:23.93 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 -[2ac 01-05 02:50:23.93 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 -[2ad 01-05 02:50:23.93 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:47154 -[2ae 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[2af 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[2b0 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[2b1 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[2b2 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[2b3 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2b4 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[2b5 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[2b6 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[2b7 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[2b8 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[2b9 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[2ba 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2bc 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47154: rpc error: code = Canceled desc = context canceled -[2bd 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[2be 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:47152 because channel businesschannel not found -[2bf 01-05 02:50:23.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:47152 -[2c0 01-05 02:50:23.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:47152 -[2c1 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47152: rpc error: code = Canceled desc = context canceled -[2c2 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[2bb 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2c3 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2c4 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[2c5 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2c6 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2c7 01-05 02:50:23.93 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[2c8 01-05 02:50:23.94 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 -cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= ------END CERTIFICATE----- -[2c9 01-05 02:50:23.94 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 -bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU ------END CERTIFICATE----- -[2ca 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[2cb 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[2cc 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2cd 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2ce 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2cf 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2d1 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[2d2 01-05 02:50:23.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:47156 -[2d3 01-05 02:50:23.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:47156 -[2d0 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2d4 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[2d5 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[2d6 01-05 02:50:23.94 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 -[2d7 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2d8 01-05 02:50:23.94 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 -[2d9 01-05 02:50:23.94 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----- -[2da 01-05 02:50:23.94 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----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1204,17 +882,70 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[2db 01-05 02:50:23.94 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 -[2dc 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2dd 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2de 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2df 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2e0 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[2e1 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[2e2 01-05 02:50:23.94 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 -[2e3 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2e4 01-05 02:50:23.94 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 -[2e5 01-05 02:50:23.94 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----- +[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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1229,7 +960,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[2e6 01-05 02:50:23.94 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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1243,133 +974,411 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[2e7 01-05 02:50:23.94 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 -[2e8 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[2e9 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[2ea 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[2eb 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[2ec 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[2ed 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[2ee 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[2ef 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[2f0 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[2f1 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[2f2 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[2f3 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[2f4 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[2f5 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[2f6 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[2f7 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[2f8 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[2f9 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[2fa 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[2fb 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[2fc 01-05 02:50:23.94 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[2fd 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[2fe 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[2ff 01-05 02:50:23.95 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 -[300 01-05 02:50:23.95 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 -[301 01-05 02:50:23.95 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 -[302 01-05 02:50:23.95 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 -[303 01-05 02:50:23.95 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 -[304 01-05 02:50:23.95 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 -[305 01-05 02:50:23.95 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 -[306 01-05 02:50:23.95 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 -[307 01-05 02:50:23.95 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 -[308 01-05 02:50:23.95 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 -[309 01-05 02:50:23.95 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 -[30a 01-05 02:50:23.95 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 -[30b 01-05 02:50:23.95 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 -[30c 01-05 02:50:23.95 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 -[30d 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[30e 01-05 02:50:23.95 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 -[30f 01-05 02:50:23.95 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 -[310 01-05 02:50:23.95 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-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[312 01-05 02:50:23.95 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 -[313 01-05 02:50:23.95 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-05 02:50:23.95 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-05 02:50:23.95 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-05 02:50:23.95 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 -[317 01-05 02:50:23.95 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 -[318 01-05 02:50:23.95 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 -[319 01-05 02:50:23.95 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 -[31a 01-05 02:50:23.95 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 -[31b 01-05 02:50:23.95 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 -[31c 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[31d 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[31e 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[31f 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[320 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[321 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[322 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[323 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[324 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[325 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[326 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[327 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[328 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[329 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[32a 01-05 02:50:23.95 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 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[32c 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[32d 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[32e 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[32f 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[330 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[331 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[332 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[333 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[334 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[335 01-05 02:50:23.95 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 -[336 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -[337 01-05 02:50:23.95 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 -[338 01-05 02:50:23.95 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 -[339 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[33a 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[33b 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[33c 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[33d 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[33e 01-05 02:50:23.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[33f 01-05 02:50:23.95 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)(0xc420945b20)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[340 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[341 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x4f, 0x63, 0xe, 0x77, 0x36, 0xb7, 0xf3, 0x1b, 0xd0, 0x22, 0x8d, 0xe5, 0x9e, 0x49, 0x5f, 0x9d, 0x34, 0x7b, 0x44, 0x65, 0x7b, 0xe3, 0xc5, 0xfc, 0x3a, 0x1a, 0x4e, 0x51, 0x55, 0x39, 0xc6, 0xd3} txOffsets= -txId= locPointer=offset=38, bytesLength=12078 +[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----- +MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +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----- +MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +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----- +MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +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----- +MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +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----- +MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +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----- +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----- +[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 ] -[342 01-05 02:50:23.96 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] -[343 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[344 01-05 02:50:23.96 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] -[345 01-05 02:50:23.96 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 -[346 01-05 02:50:23.96 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]} -[347 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] -[348 01-05 02:50:23.96 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) -[349 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -[34a 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -[34b 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[34c 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[34d 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[34e 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[34f 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F2FE7621685EF59867736A5B21EFCFC9 -[350 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 106AF24D235AC510633744F875F99186E18DEF85F2C772139C3C0AE8D8377607 -[351 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[352 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[353 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[354 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[355 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[356 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F2FE7621685EF59867736A5B21EFCFC9 -[357 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E29D69393F8E6FA37012839E2882866134C27FE5AEDA920AFA69456F2E7783B3 -[358 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xd8, 0xf4, 0x5a, 0x6a, 0x9c, 0xf5, 0xaa, 0x5d, 0xfb, 0x76, 0xb, 0xe5, 0x2a, 0xb7, 0x41, 0x33, 0xa4, 0x11, 0xd0, 0xc2, 0x7, 0x1e, 0xff, 0xa7, 0xa2, 0x78, 0x95, 0x60, 0xe1, 0xa6, 0xd2, 0x64} txOffsets= +[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 ] -[359 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24015], isChainEmpty=[false], lastBlockNumber=[1] -[35a 01-05 02:50:23.96 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -[35b 01-05 02:50:24.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[35c 01-05 02:50:24.14 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 -[35d 01-05 02:50:24.14 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 == -[35e 01-05 02:50:24.14 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 -[35f 01-05 02:50:24.14 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 == -[360 01-05 02:50:24.15 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 -[361 01-05 02:50:24.15 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----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1383,184 +1392,170 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[362 01-05 02:50:24.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 0xc42000e1a8 gate 1515120624151509200 evaluation starts -[363 01-05 02:50:24.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 0xc42000e1a8 signed by 0 principal evaluation starts (used [false]) -[364 01-05 02:50:24.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 0xc42000e1a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[365 01-05 02:50:24.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 0xc42000e1a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[366 01-05 02:50:24.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 0xc42000e1a8 principal evaluation fails -[367 01-05 02:50:24.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 0xc42000e1a8 gate 1515120624151509200 evaluation fails -[368 01-05 02:50:24.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/Orderer/OrdererOrg/Readers -[369 01-05 02:50:24.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/Orderer/OrdererOrg/Readers -[36a 01-05 02:50:24.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 [ OrdererOrg.Readers ] -[36b 01-05 02:50:24.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/Orderer/Readers -[36c 01-05 02:50:24.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/Orderer/Readers -[36d 01-05 02:50:24.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 == -[36e 01-05 02:50:24.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 -[36f 01-05 02:50:24.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 == -[370 01-05 02:50:24.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 0xc42000e1b8 gate 1515120624153633400 evaluation starts -[371 01-05 02:50:24.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 0xc42000e1b8 signed by 0 principal evaluation starts (used [false]) -[372 01-05 02:50:24.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 0xc42000e1b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[373 01-05 02:50:24.15 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 -[374 01-05 02:50:24.15 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 -[375 01-05 02:50:24.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 0xc42000e1b8 principal matched by identity 0 -[376 01-05 02:50:24.15 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 f6 47 3e 2d 7c db 5a bc 62 08 6d 3d 53 b2 c9 b8 |.G>-|.Z.b.m=S...| -00000010 8f 8e 2e bf e6 12 11 1e 89 dc c4 9d e6 2a 44 eb |.............*D.| -[377 01-05 02:50:24.15 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 f9 be fb 49 0e 6c 6d 8e 97 66 d5 |0E.!....I.lm..f.| -00000010 2b e5 25 30 05 82 d2 a7 2c 02 dd 5c 13 90 f5 0f |+.%0....,..\....| -00000020 e0 7c bc fd a8 02 20 6f 56 f3 14 68 37 fb 01 e0 |.|.... oV..h7...| -00000030 27 89 bb 15 42 af ad 35 0b e0 9b 12 fc bb 18 aa |'...B..5........| -00000040 06 c5 28 ff 70 63 7f |..(.pc.| -[378 01-05 02:50:24.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 0xc42000e1b8 principal evaluation succeeds for identity 0 -[379 01-05 02:50:24.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 0xc42000e1b8 gate 1515120624153633400 evaluation succeeds -[37a 01-05 02:50:24.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 satisfies policy /Channel/Application/Org1MSP/Readers -[37b 01-05 02:50:24.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 -[37c 01-05 02:50:24.15 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 -[37d 01-05 02:50:24.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 -[37e 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[37f 01-05 02:50:24.15 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 -[380 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202750c0) start: > stop: > from 172.18.0.7:47156 -[381 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[382 01-05 02:50:24.15 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] -[383 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes -[384 01-05 02:50:24.15 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]} -[385 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] -[386 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202750c0) for 172.18.0.7:47156 -[387 01-05 02:50:24.15 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:47156 for (0xc4202750c0) -[388 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47156 -[389 01-05 02:50:24.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.7:47156 -[38a 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47156: rpc error: code = Canceled desc = context canceled -[38b 01-05 02:50:24.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[38c 01-05 02:50:25.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[38d 01-05 02:50:25.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47166 -[38e 01-05 02:50:25.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:47166 -[38f 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[390 01-05 02:50:25.56 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:47168 -[391 01-05 02:50:25.56 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:47168 -[392 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -[393 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[394 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[395 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[396 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[397 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[398 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515120625567810500 evaluation starts -[399 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 signed by 0 principal evaluation starts (used [false]) -[39a 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[39b 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[39c 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal evaluation fails -[39d 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1515120625567810500 evaluation fails -[39e 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[39f 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[3a0 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[3a1 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[3a2 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[3a3 01-05 02:50:25.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[3a4 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[3a5 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[3a6 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e228 gate 1515120625570552900 evaluation starts -[3a7 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 signed by 0 principal evaluation starts (used [false]) -[3a8 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3a9 01-05 02:50:25.57 UTC] [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 -[3aa 01-05 02:50:25.57 UTC] [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 -[3ab 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 principal matched by identity 0 -[3ac 01-05 02:50:25.57 UTC] [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 4b bc fb 21 bd f4 c5 fa 62 3c b8 14 21 57 79 bb |K..!....b<..!Wy.| -00000010 9b f7 06 c2 9c 54 ac ed 31 90 73 e7 82 6f 76 6e |.....T..1.s..ovn| -[3ad 01-05 02:50:25.57 UTC] [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 92 d6 7a 2d 28 6c c3 16 f7 fd 79 |0E.!...z-(l....y| -00000010 bd 5c e6 18 76 7c dd bf b7 44 12 33 62 c5 2a 7e |.\..v|...D.3b.*~| -00000020 19 7f c9 dc b3 02 20 05 92 a4 81 b4 52 6c 2c fd |...... .....Rl,.| -00000030 39 2e b1 3d 70 a7 50 38 74 8f 06 65 59 77 8a ea |9..=p.P8t..eYw..| -00000040 f8 0c f2 71 82 df 6c |...q..l| -[3ae 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 principal evaluation succeeds for identity 0 -[3af 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e228 gate 1515120625570552900 evaluation succeeds -[3b0 01-05 02:50:25.57 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 -[3b1 01-05 02:50:25.57 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 -[3b2 01-05 02:50:25.57 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 -[3b3 01-05 02:50:25.57 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 -[3b4 01-05 02:50:25.57 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 -[3b5 01-05 02:50:25.57 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 -[3b6 01-05 02:50:25.57 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 -[3b7 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3b8 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3b9 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3ba 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3bb 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3bc 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3bd 01-05 02:50:25.57 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 -[3be 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3bf 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3c0 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3c1 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3c2 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3c3 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3c4 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/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 -[3c5 01-05 02:50:25.57 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 -[3c6 01-05 02:50:25.57 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 -[3c7 01-05 02:50:25.57 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 -[3c8 01-05 02:50:25.57 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] -[3c9 01-05 02:50:25.57 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 -[3ca 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[3cb 01-05 02:50:25.57 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 [] -[3cc 01-05 02:50:25.57 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 -[3cd 01-05 02:50:25.57 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 -[3ce 01-05 02:50:25.57 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] -[3cf 01-05 02:50:25.57 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 -[3d0 01-05 02:50:25.57 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 -[3d1 01-05 02:50:25.57 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 [] -[3d2 01-05 02:50:25.57 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 == -[3d3 01-05 02:50:25.57 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 0xc42000e490 gate 1515120625576303000 evaluation starts -[3d4 01-05 02:50:25.57 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 0xc42000e490 signed by 0 principal evaluation starts (used [false]) -[3d5 01-05 02:50:25.57 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 0xc42000e490 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3d6 01-05 02:50:25.57 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 -[3d7 01-05 02:50:25.57 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 0xc42000e490 principal matched by identity 0 -[3d8 01-05 02:50:25.57 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 11 86 ad 3a 42 db 3b 7d e5 0e 5a 3f 91 25 1d b7 |...:B.;}..Z?.%..| -00000010 e4 da 7e fb b0 79 dc 1a 90 40 35 27 16 d9 13 ae |..~..y...@5'....| -[3d9 01-05 02:50:25.57 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 5e 5c 7b 9d f0 8d 44 22 97 f1 ad 2c |0D. ^\{...D"...,| -00000010 98 4c 0a b0 4f 33 e1 fe 4f eb 78 a8 9e d4 77 89 |.L..O3..O.x...w.| -00000020 9e c1 3e d4 02 20 6d 70 aa f1 fd a3 43 4d fd bc |..>.. mp....CM..| -00000030 8b de 16 ff 85 14 0d 97 8c 17 8d 0f 3f fd b0 bd |............?...| -00000040 0a 89 62 d0 f4 9c |..b...| -[3da 01-05 02:50:25.57 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 0xc42000e490 principal evaluation succeeds for identity 0 -[3db 01-05 02:50:25.57 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 0xc42000e490 gate 1515120625576303000 evaluation succeeds -[3dc 01-05 02:50:25.57 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 -[3dd 01-05 02:50:25.57 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 -[3de 01-05 02:50:25.57 UTC] [github.com/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 -[3df 01-05 02:50:25.57 UTC] [github.com/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 -[3e0 01-05 02:50:25.57 UTC] [github.com/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 -[3e1 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3e2 01-05 02:50:25.57 UTC] [github.com/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-05 02:50:25.57 UTC] [github.com/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-05 02:50:25.57 UTC] [github.com/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-05 02:50:25.57 UTC] [github.com/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-05 02:50:25.57 UTC] [github.com/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-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3e8 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e9 01-05 02:50:25.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3ea 01-05 02:50:25.57 UTC] [github.com/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" -[3eb 01-05 02:50:25.57 UTC] [github.com/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" -[3ec 01-05 02:50:25.57 UTC] [github.com/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" -[3ed 01-05 02:50:25.57 UTC] [github.com/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-05 02:50:25.57 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" -[3ef 01-05 02:50:25.57 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" -[3f0 01-05 02:50:25.58 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" -[3f1 01-05 02:50:25.58 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 -[3f2 01-05 02:50:25.58 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 -[3f3 01-05 02:50:25.58 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 -[3f4 01-05 02:50:25.58 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 -[3f5 01-05 02:50:25.58 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 -[3f6 01-05 02:50:25.58 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 -[3f7 01-05 02:50:25.58 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 -[3f8 01-05 02:50:25.58 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 -[3f9 01-05 02:50:25.58 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 -[3fa 01-05 02:50:25.58 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 -[3fb 01-05 02:50:25.58 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 -[3fc 01-05 02:50:25.58 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 -[3fd 01-05 02:50:25.58 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 -[3fe 01-05 02:50:25.58 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 -[3ff 01-05 02:50:25.58 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 -[400 01-05 02:50:25.58 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 -[401 01-05 02:50:25.58 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 -[402 01-05 02:50:25.58 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 -[403 01-05 02:50:25.58 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 -[404 01-05 02:50:25.58 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----- +[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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1574,7 +1569,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[405 01-05 02:50:25.58 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1587,58 +1582,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[406 01-05 02:50:25.58 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 -[407 01-05 02:50:25.58 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 -[408 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[409 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[40a 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[40b 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[40c 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[40d 01-05 02:50:25.58 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: -[40e 01-05 02:50:25.58 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 -[40f 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[410 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[411 01-05 02:50:25.58 UTC] [github.com/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 -[412 01-05 02:50:25.58 UTC] [github.com/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----- -[413 01-05 02:50:25.58 UTC] [github.com/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----- -[414 01-05 02:50:25.58 UTC] [github.com/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 -[415 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[416 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[417 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[418 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[419 01-05 02:50:25.58 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 -[41a 01-05 02:50:25.58 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 -[41b 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[41c 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[41d 01-05 02:50:25.58 UTC] [github.com/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 -[41e 01-05 02:50:25.58 UTC] [github.com/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----- +[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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1653,7 +1609,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[41f 01-05 02:50:25.58 UTC] [github.com/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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1667,98 +1623,137 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[420 01-05 02:50:25.58 UTC] [github.com/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 -[421 01-05 02:50:25.58 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) -[422 01-05 02:50:25.58 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 -[423 01-05 02:50:25.58 UTC] [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 -[424 01-05 02:50:25.58 UTC] [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 -[425 01-05 02:50:25.58 UTC] [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 -[426 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[427 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[428 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[429 01-05 02:50:25.58 UTC] [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 -[42a 01-05 02:50:25.58 UTC] [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 02:50:25.58 UTC] [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 -[42c 01-05 02:50:25.58 UTC] [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 -[42d 01-05 02:50:25.58 UTC] [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 -[42e 01-05 02:50:25.58 UTC] [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 -[42f 01-05 02:50:25.58 UTC] [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 -[430 01-05 02:50:25.58 UTC] [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 -[431 01-05 02:50:25.58 UTC] [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 -[432 01-05 02:50:25.58 UTC] [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 -[433 01-05 02:50:25.58 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 -[434 01-05 02:50:25.58 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 -[435 01-05 02:50:25.58 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 -[436 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[437 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[438 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[439 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[43a 01-05 02:50:25.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[43b 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[43c 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[43d 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[43e 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[43f 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[440 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[441 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[442 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[443 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[444 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[445 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[446 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/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 -[447 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/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 -[448 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[449 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[44a 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[44b 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[44c 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[44d 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/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 -[44e 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[44f 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[451 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[452 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[453 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[454 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[455 01-05 02:50:25.59 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[456 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 -[457 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 -[458 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 -[459 01-05 02:50:25.59 UTC] [github.com/hyperledger/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 -[45a 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 -[45b 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 -[45c 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 -[45d 01-05 02:50:25.60 UTC] [github.com/hyperledger/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 -[45e 01-05 02:50:25.60 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' -[45f 01-05 02:50:25.60 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' -[460 01-05 02:50:25.60 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] -[461 01-05 02:50:25.60 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 -[462 01-05 02:50:25.60 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 -[463 01-05 02:50:25.60 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 [] -[464 01-05 02:50:25.60 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 -[465 01-05 02:50:25.60 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 -[466 01-05 02:50:25.60 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' -[467 01-05 02:50:25.60 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' -[468 01-05 02:50:25.60 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' -[469 01-05 02:50:25.60 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] -[46a 01-05 02:50:25.60 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 -[46b 01-05 02:50:25.60 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 -[46c 01-05 02:50:25.60 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 [] -[46d 01-05 02:50:25.60 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 -[46e 01-05 02:50:25.60 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' -[46f 01-05 02:50:25.60 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 -[470 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[471 01-05 02:50:25.60 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 -[472 01-05 02:50:25.60 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 -[473 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608F1CFBBD20522...38748F066559778AEAF80CF27182DF6C -[474 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: E23E3CF27419FE1DFE40F3891854457E3CBD31754CBAF58A361D4D327FBF6B0E -[475 01-05 02:50:25.60 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 == -[476 01-05 02:50:25.60 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 -[477 01-05 02:50:25.60 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 == -[478 01-05 02:50:25.60 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 -[479 01-05 02:50:25.60 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 == -[47a 01-05 02:50:25.60 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 -[47b 01-05 02:50:25.60 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----- +[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----- +MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BCAZAJdqJye8yeRvM6TmyEYHBmASpnDxX2JPE+oXtdxVPvkpxyF7Z/9ttVnACouI +lBT4mPNV7/LQE5ldKZYLf9ejXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIDtF8KW5NuMJNEcaKoRc +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----- +MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM4WhcNMjcxMjI3MDYyNjM4 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABEZrhm0cXRzlxV5E+Hu7jFBUiL89pUG5 +yfra2Q/Yi3XlQt9Y/Th+K8V11zXHFOz84ZJQWBiI7EY5ZTpM/2BGSJKjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIDtF8KW5NuMJ +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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1771,156 +1766,114 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[47c 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e288 gate 1515120625604463200 evaluation starts -[47d 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 signed by 0 principal evaluation starts (used [false]) -[47e 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[47f 01-05 02:50:25.60 UTC] [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 -[480 01-05 02:50:25.60 UTC] [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 -[481 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 principal matched by identity 0 -[482 01-05 02:50:25.60 UTC] [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 e2 3e 3c f2 74 19 fe 1d fe 40 f3 89 18 54 45 7e |.><.t....@...TE~| -00000010 3c bd 31 75 4c ba f5 8a 36 1d 4d 32 7f bf 6b 0e |<.1uL...6.M2..k.| -[483 01-05 02:50:25.60 UTC] [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 55 c9 c5 fd 7f 2b 3e dc 32 fb 00 f9 |0D. U....+>.2...| -00000010 da 55 a7 cc b9 3d 4a d7 81 fa de dd 5b fa 7b cb |.U...=J.....[.{.| -00000020 fc 1c 2f c4 02 20 5d 49 6a 17 8a 80 2a 76 39 2f |../.. ]Ij...*v9/| -00000030 cc b2 85 29 a7 7a 31 53 cb 1f 96 08 dc ff f5 e7 |...).z1S........| -00000040 c5 aa 06 c1 6c ac |....l.| -[484 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e288 principal evaluation succeeds for identity 0 -[485 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e288 gate 1515120625604463200 evaluation succeeds -[486 01-05 02:50:25.60 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 -[487 01-05 02:50:25.60 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 -[488 01-05 02:50:25.60 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 -[489 01-05 02:50:25.60 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 -[48a 01-05 02:50:25.60 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 -[48b 01-05 02:50:25.60 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 -[48c 01-05 02:50:25.60 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:47168 -[48d 01-05 02:50:25.60 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.6:7050->172.18.0.7:47168: read: connection reset by peer -[48f 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[490 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[491 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[492 01-05 02:50:25.60 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 -[493 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[494 01-05 02:50:25.61 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 -[495 01-05 02:50:25.61 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 -[496 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[497 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[498 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[499 01-05 02:50:25.61 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 -[49a 01-05 02:50:25.61 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 -[49b 01-05 02:50:25.61 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 -[49c 01-05 02:50:25.61 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 -[49d 01-05 02:50:25.61 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 -[49e 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[49f 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[4a0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[4a1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[4a2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[4a3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[4a4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[4a5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[4a6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[4a7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[4a8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[4a9 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[4aa 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[4ab 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ea98 gate 1515120625611913500 evaluation starts -[4ac 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 signed by 0 principal evaluation starts (used [false]) -[4ad 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[4ae 01-05 02:50:25.61 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 -[4af 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 principal matched by identity 0 -[4b0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 11 86 ad 3a 42 db 3b 7d e5 0e 5a 3f 91 25 1d b7 |...:B.;}..Z?.%..| -00000010 e4 da 7e fb b0 79 dc 1a 90 40 35 27 16 d9 13 ae |..~..y...@5'....| -[4b1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5e 5c 7b 9d f0 8d 44 22 97 f1 ad 2c |0D. ^\{...D"...,| -00000010 98 4c 0a b0 4f 33 e1 fe 4f eb 78 a8 9e d4 77 89 |.L..O3..O.x...w.| -00000020 9e c1 3e d4 02 20 6d 70 aa f1 fd a3 43 4d fd bc |..>.. mp....CM..| -00000030 8b de 16 ff 85 14 0d 97 8c 17 8d 0f 3f fd b0 bd |............?...| -00000040 0a 89 62 d0 f4 9c |..b...| -[4b2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ea98 principal evaluation succeeds for identity 0 -[4b3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000ea98 gate 1515120625611913500 evaluation succeeds -[48e 01-05 02:50:25.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47168: rpc error: code = Canceled desc = context canceled -[4b5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[4b4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[4b6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[4b7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[4b8 01-05 02:50:25.61 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 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4ba 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4bb 01-05 02:50:25.61 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 02:50:25.61 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 02:50:25.61 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 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[4bf 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[4c0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[4c1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[4c2 01-05 02:50:25.61 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 02:50:25.61 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 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4c5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4c6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4c7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4c8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4c9 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4cb 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4ca 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47166: rpc error: code = Canceled desc = context canceled -[4cc 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[4cd 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[4ce 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[4cf 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[4d0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[4d1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[4d2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4d3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[4d4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[4d5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[4d6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[4d7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[4d8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[4d9 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4da 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4db 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4dc 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[4dd 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4de 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4df 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[4e0 01-05 02:50:25.61 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 -cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= ------END CERTIFICATE----- -[4e1 01-05 02:50:25.61 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 -bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU ------END CERTIFICATE----- -[4e2 01-05 02:50:25.61 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 -[4e3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[4e4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4e5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4e6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4e7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4e8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4e9 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[4ea 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[4eb 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4ec 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4ed 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[4ee 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1935,7 +1888,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[4ef 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1949,17 +1902,17 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[4f0 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[4f1 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4f2 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4f3 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4f4 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4f5 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[4f6 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[4f7 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4f8 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4f9 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[4fa 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1974,7 +1927,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[4fb 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1988,118 +1941,159 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[4fc 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[4fd 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[4fe 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[4ff 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[500 01-05 02:50:25.61 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[501 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[502 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[503 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[504 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[505 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[506 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[507 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[508 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[509 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[50a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[50b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[50c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[50d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[50e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[50f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[510 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[511 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[512 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[513 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[514 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[515 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[516 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[517 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[518 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[519 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[51a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[51b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[51c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[51d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[51e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[51f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[520 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[521 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[522 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[523 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[524 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[525 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[526 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[527 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[528 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[529 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[52a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[52b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[52c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[52d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[52e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[52f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[530 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[531 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[532 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[533 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[534 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[535 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[536 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[537 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[538 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[539 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[53a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[53b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[53c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[53d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[53e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[53f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[540 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[541 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[542 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[543 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[544 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[545 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[546 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[547 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[548 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[549 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[54a 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[54b 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[54c 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[54d 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[54e 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[54f 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F16989A505B543F5FC08BC321769285B -[550 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 5FC873A2290B07172C1CC890E6CDED4BBC2AADD52C107823A9C6B81B820466D5 -[551 01-05 02:50:25.62 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 -[552 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[553 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[554 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[555 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[556 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[557 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...F16989A505B543F5FC08BC321769285B -[558 01-05 02:50:25.62 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 12C97D01012CD5C02FB772CB816DFB1B3DAFC73C9A5B42CE31DFF9D6C03D3D92 -[559 01-05 02:50:25.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6e, 0x36, 0x5e, 0xcb, 0x4a, 0x54, 0xb9, 0x4f, 0xf6, 0xc, 0xda, 0xc9, 0x43, 0xd5, 0x11, 0x89, 0xbd, 0x9d, 0x34, 0x76, 0x3d, 0x5b, 0x15, 0x8b, 0xdc, 0xb4, 0xab, 0x31, 0x57, 0x48, 0xae, 0x94} txOffsets= +[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----- +MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +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----- +MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +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= txId= locPointer=offset=70, bytesLength=12093 ] -[55a 01-05 02:50:25.69 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] -[55b 01-05 02:50:25.69 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -[55c 01-05 02:50:27.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[55d 01-05 02:50:27.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47170 -[55e 01-05 02:50:27.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47170 -[55f 01-05 02:50:27.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[560 01-05 02:50:27.72 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:47172 -[561 01-05 02:50:27.72 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:47172 -[562 01-05 02:50:27.72 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 -[563 01-05 02:50: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 == -[564 01-05 02:50: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 -[565 01-05 02:50: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 == -[566 01-05 02:50: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 -[567 01-05 02:50: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 == -[568 01-05 02:50: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 -[569 01-05 02:50: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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2113,134 +2107,120 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[56a 01-05 02:50: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 0xc42000f028 gate 1515120627725304100 evaluation starts -[56b 01-05 02:50: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 0xc42000f028 signed by 0 principal evaluation starts (used [false]) -[56c 01-05 02:50: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 0xc42000f028 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[56d 01-05 02:50: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 0xc42000f028 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[56e 01-05 02:50: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 0xc42000f028 principal evaluation fails -[56f 01-05 02:50: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 0xc42000f028 gate 1515120627725304100 evaluation fails -[570 01-05 02:50: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/Orderer/OrdererOrg/Writers -[571 01-05 02:50: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/Orderer/OrdererOrg/Writers -[572 01-05 02:50: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 [ OrdererOrg.Writers ] -[573 01-05 02:50: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/Orderer/Writers -[574 01-05 02:50: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/Orderer/Writers -[575 01-05 02:50: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 == -[576 01-05 02:50: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 -[577 01-05 02:50: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 == -[578 01-05 02:50: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 0xc42000f038 gate 1515120627727943400 evaluation starts -[579 01-05 02:50: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 0xc42000f038 signed by 0 principal evaluation starts (used [false]) -[57a 01-05 02:50: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 0xc42000f038 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[57b 01-05 02:50: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 0xc42000f038 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[57c 01-05 02:50: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 0xc42000f038 principal evaluation fails -[57d 01-05 02:50: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 0xc42000f038 gate 1515120627727943400 evaluation fails -[57e 01-05 02:50: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 -[57f 01-05 02:50: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 -[580 01-05 02:50: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 == -[581 01-05 02:50: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 0xc42000f040 gate 1515120627729889900 evaluation starts -[582 01-05 02:50: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 0xc42000f040 signed by 0 principal evaluation starts (used [false]) -[583 01-05 02:50: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 0xc42000f040 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[584 01-05 02:50: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 Org2MSP -[585 01-05 02:50: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 Org2MSP validating identity -[586 01-05 02:50: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 0xc42000f040 principal matched by identity 0 -[587 01-05 02:50: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 3e eb ec 55 de 98 6b 08 6a 6b bc 2a 14 bd bd 30 |>..U..k.jk.*...0| -00000010 00 b8 0a 72 9c ba a7 a4 fc 7d 33 ee 17 1b 85 b6 |...r.....}3.....| -[588 01-05 02:50: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: sig = 00000000 30 44 02 20 7b 30 1e cc 76 e0 97 86 0a 90 29 b4 |0D. {0..v.....).| -00000010 a7 45 1d aa 68 88 19 d0 2e 7b a2 56 9c 24 e9 f4 |.E..h....{.V.$..| -00000020 d2 fb a2 33 02 20 1f 5a cb f2 d0 27 32 8e 2f 16 |...3. .Z...'2./.| -00000030 83 7c b1 f0 16 cc d3 17 1b fc ba fb ae 42 58 77 |.|...........BXw| -00000040 75 ea da fe 25 bc |u...%.| -[589 01-05 02:50: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 0xc42000f040 principal evaluation succeeds for identity 0 -[58a 01-05 02:50: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 0xc42000f040 gate 1515120627729889900 evaluation succeeds -[58b 01-05 02:50: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/Application/Org2MSP/Writers -[58c 01-05 02:50: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/Application/Org2MSP/Writers -[58d 01-05 02:50: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/Application/Writers -[58e 01-05 02:50: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/Application/Writers -[58f 01-05 02:50: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 -[590 01-05 02:50: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 -[591 01-05 02:50:27.73 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 -[592 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[593 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[594 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[595 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[596 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[597 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[598 01-05 02:50:27.73 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 -[599 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[59a 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[59b 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[59c 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[59d 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[59e 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[59f 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/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 -[5a0 01-05 02:50:27.73 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 -[5a1 01-05 02:50:27.73 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 -[5a2 01-05 02:50:27.73 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] -[5a3 01-05 02:50:27.73 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 -[5a4 01-05 02:50:27.73 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 -[5a5 01-05 02:50:27.73 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 [] -[5a6 01-05 02:50:27.73 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 -[5a7 01-05 02:50:27.73 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 -[5a8 01-05 02:50:27.73 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] -[5a9 01-05 02:50:27.73 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 -[5aa 01-05 02:50:27.73 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 -[5ab 01-05 02:50:27.73 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 [] -[5ac 01-05 02:50:27.73 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 == -[5ad 01-05 02:50:27.73 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 0xc420138458 gate 1515120627735969000 evaluation starts -[5ae 01-05 02:50:27.73 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 0xc420138458 signed by 0 principal evaluation starts (used [false]) -[5af 01-05 02:50:27.73 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 0xc420138458 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[5b0 01-05 02:50:27.73 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 -[5b1 01-05 02:50:27.73 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 0xc420138458 principal matched by identity 0 -[5b2 01-05 02:50:27.73 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 78 3a e9 bc 4d 6f 93 e6 10 ac 7e 71 bb da 9f 43 |x:..Mo....~q...C| -00000010 aa b7 dc ac ad c6 38 71 b0 ac 15 8d 4d e5 4c 74 |......8q....M.Lt| -[5b3 01-05 02:50:27.73 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 7c 08 a7 68 2e c3 d6 b6 48 67 a7 69 |0D. |..h....Hg.i| -00000010 82 56 c7 82 d1 d5 b7 b7 44 b8 40 63 b4 27 e2 b4 |.V......D.@c.'..| -00000020 48 ca 0d 65 02 20 13 49 28 fa 91 26 bd 95 c0 08 |H..e. .I(..&....| -00000030 98 cd 96 39 52 97 c2 d2 eb f5 35 fb de f3 03 39 |...9R.....5....9| -00000040 fd a8 ae e1 34 3b |....4;| -[5b4 01-05 02:50:27.73 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 0xc420138458 principal evaluation succeeds for identity 0 -[5b5 01-05 02:50:27.73 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 0xc420138458 gate 1515120627735969000 evaluation succeeds -[5b6 01-05 02:50:27.73 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 -[5b7 01-05 02:50:27.73 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 -[5b8 01-05 02:50:27.73 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 -[5b9 01-05 02:50:27.73 UTC] [github.com/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" -[5ba 01-05 02:50:27.73 UTC] [github.com/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" -[5bb 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5bc 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5bd 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[5be 01-05 02:50:27.73 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5bf 01-05 02:50:27.73 UTC] [github.com/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" -[5c0 01-05 02:50:27.73 UTC] [github.com/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 -[5c1 01-05 02:50:27.73 UTC] [github.com/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 -[5c2 01-05 02:50:27.73 UTC] [github.com/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 -[5c3 01-05 02:50:27.73 UTC] [github.com/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" -[5c4 01-05 02:50:27.73 UTC] [github.com/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" -[5c5 01-05 02:50:27.73 UTC] [github.com/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" -[5c6 01-05 02:50:27.73 UTC] [github.com/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" -[5c7 01-05 02:50:27.73 UTC] [github.com/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" -[5c8 01-05 02:50:27.73 UTC] [github.com/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" -[5c9 01-05 02:50:27.73 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" -[5ca 01-05 02:50:27.73 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" -[5cb 01-05 02:50:27.73 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" -[5cc 01-05 02:50:27.73 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 -[5cd 01-05 02:50:27.73 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 -[5ce 01-05 02:50:27.73 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 -[5cf 01-05 02:50:27.73 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 -[5d0 01-05 02:50:27.73 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 -[5d1 01-05 02:50:27.73 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 -[5d2 01-05 02:50:27.73 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 -[5d3 01-05 02:50:27.73 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 -[5d4 01-05 02:50:27.73 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 -[5d5 01-05 02:50:27.73 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 -[5d6 01-05 02:50:27.73 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 -[5d7 01-05 02:50:27.73 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 -[5d8 01-05 02:50:27.73 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 -[5d9 01-05 02:50:27.73 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 -[5da 01-05 02:50:27.73 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 -[5db 01-05 02:50:27.74 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 -[5dc 01-05 02:50:27.74 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 -[5dd 01-05 02:50:27.74 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 -[5de 01-05 02:50:27.74 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 -[5df 01-05 02:50:27.74 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----- +[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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2254,7 +2234,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[5e0 01-05 02:50:27.74 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2267,19 +2247,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[5e1 01-05 02:50:27.74 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 -[5e2 01-05 02:50:27.74 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 -[5e3 01-05 02:50:27.74 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 -[5e4 01-05 02:50:27.74 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 -[5e5 01-05 02:50:27.74 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 -[5e6 01-05 02:50:27.74 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 -[5e7 01-05 02:50:27.74 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 -[5e8 01-05 02:50:27.74 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: -[5e9 01-05 02:50:27.74 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 -[5ea 01-05 02:50:27.74 UTC] [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 -[5eb 01-05 02:50:27.74 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 -[5ec 01-05 02:50:27.74 UTC] [github.com/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 -[5ed 01-05 02:50:27.74 UTC] [github.com/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----- +[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 @@ -2294,7 +2274,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[5ee 01-05 02:50:27.74 UTC] [github.com/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----- +[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 @@ -2308,17 +2288,17 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[5ef 01-05 02:50:27.74 UTC] [github.com/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 -[5f0 01-05 02:50:27.74 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 -[5f1 01-05 02:50:27.74 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 -[5f2 01-05 02:50:27.74 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 -[5f3 01-05 02:50:27.74 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 -[5f4 01-05 02:50:27.74 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: -[5f5 01-05 02:50:27.74 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 -[5f6 01-05 02:50:27.74 UTC] [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 -[5f7 01-05 02:50:27.74 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 -[5f8 01-05 02:50:27.74 UTC] [github.com/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 -[5f9 01-05 02:50:27.74 UTC] [github.com/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----- +[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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2333,7 +2313,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[5fa 01-05 02:50:27.74 UTC] [github.com/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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2347,99 +2327,99 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[5fb 01-05 02:50:27.74 UTC] [github.com/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 -[5fc 01-05 02:50:27.74 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) -[5fd 01-05 02:50:27.74 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 -[5fe 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[5ff 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[600 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[601 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[602 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[603 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[604 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[605 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[606 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[607 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[608 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[609 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[60a 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[60b 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[60c 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[60d 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[60e 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[60f 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[610 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[611 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[612 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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 -[613 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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 -[614 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[615 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[616 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[617 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[618 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[619 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61a 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61b 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61c 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61d 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[61e 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[61f 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[620 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[621 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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 -[622 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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 -[623 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[624 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[625 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[626 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[627 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[628 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/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 -[629 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[62a 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[62b 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[62c 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[62d 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[62e 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[62f 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[630 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[631 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[632 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[633 01-05 02:50:27.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[634 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[635 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[636 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[637 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[638 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[639 01-05 02:50:27.74 UTC] [github.com/hyperledger/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 -[63a 01-05 02:50:27.74 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' -[63b 01-05 02:50:27.74 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' -[63c 01-05 02:50:27.74 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] -[63d 01-05 02:50:27.74 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 -[63e 01-05 02:50:27.74 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 -[63f 01-05 02:50:27.74 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 [] -[640 01-05 02:50:27.74 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 -[641 01-05 02:50:27.74 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 -[642 01-05 02:50:27.74 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' -[643 01-05 02:50:27.74 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' -[644 01-05 02:50:27.74 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' -[645 01-05 02:50:27.74 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] -[646 01-05 02:50:27.74 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 -[647 01-05 02:50:27.74 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 -[648 01-05 02:50:27.74 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 [] -[649 01-05 02:50:27.74 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 -[64a 01-05 02:50:27.74 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' -[64b 01-05 02:50:27.74 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 -[64c 01-05 02:50:27.74 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 -[64d 01-05 02:50:27.74 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 -[64e 01-05 02:50:27.74 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 -[64f 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608F3CFBBD20522...D3171BFCBAFBAE42587775EADAFE25BC -[650 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 7710C8962AA274C6644BF2DADBC9B08A80CC67DF22F2F00CD8A0DBC20A9907AF -[651 01-05 02:50:27.75 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 == -[652 01-05 02:50:27.75 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 -[653 01-05 02:50:27.75 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 == -[654 01-05 02:50:27.75 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 -[655 01-05 02:50:27.75 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 == -[656 01-05 02:50:27.75 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 -[657 01-05 02:50:27.75 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----- +[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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2452,116 +2432,134 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[658 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138ec8 gate 1515120627750870100 evaluation starts -[659 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 signed by 0 principal evaluation starts (used [false]) -[65a 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[65b 01-05 02:50:27.75 UTC] [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 -[65c 01-05 02:50:27.75 UTC] [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 -[65d 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 principal matched by identity 0 -[65e 01-05 02:50:27.75 UTC] [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 77 10 c8 96 2a a2 74 c6 64 4b f2 da db c9 b0 8a |w...*.t.dK......| -00000010 80 cc 67 df 22 f2 f0 0c d8 a0 db c2 0a 99 07 af |..g."...........| -[65f 01-05 02:50:27.75 UTC] [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 f5 2d ea 1b ed ff d3 9b e5 21 59 |0E.!..-.......!Y| -00000010 a5 a0 6b 9f be c8 56 1a af 53 4f 2c b6 60 47 8f |..k...V..SO,.`G.| -00000020 5c a9 b2 b0 6d 02 20 01 9d ae dc d3 a5 dd 3b ac |\...m. .......;.| -00000030 bd ee c9 94 1f b2 bc 86 f1 92 c7 18 88 15 9e 85 |................| -00000040 79 e1 be bf 64 93 9f |y...d..| -[660 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138ec8 principal evaluation succeeds for identity 0 -[661 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138ec8 gate 1515120627750870100 evaluation succeeds -[662 01-05 02:50:27.75 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 -[663 01-05 02:50:27.75 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 -[664 01-05 02:50:27.75 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 -[665 01-05 02:50:27.75 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 -[666 01-05 02:50:27.75 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 -[667 01-05 02:50:27.75 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 -[668 01-05 02:50:27.75 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:47172 -[669 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47172: rpc error: code = Canceled desc = context canceled -[66a 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[66b 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[66d 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[66c 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47170: rpc error: code = Canceled desc = context canceled -[66e 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[66f 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[670 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[671 01-05 02:50:27.75 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 -[672 01-05 02:50:27.75 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 -[673 01-05 02:50:27.75 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 -[674 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[675 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[676 01-05 02:50:27.75 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[677 01-05 02:50:27.75 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 -[678 01-05 02:50:27.75 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 -[679 01-05 02:50:27.75 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 -[67a 01-05 02:50:27.76 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 -[67b 01-05 02:50:27.76 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 -[67c 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[67d 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[67e 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[67f 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[680 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[681 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[682 01-05 02:50:27.76 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 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[684 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -[685 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[686 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[687 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -[688 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[689 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e758 gate 1515120627763061000 evaluation starts -[68a 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 signed by 0 principal evaluation starts (used [false]) -[68b 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[68c 01-05 02:50:27.76 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 -[68d 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 principal matched by identity 0 -[68e 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 78 3a e9 bc 4d 6f 93 e6 10 ac 7e 71 bb da 9f 43 |x:..Mo....~q...C| -00000010 aa b7 dc ac ad c6 38 71 b0 ac 15 8d 4d e5 4c 74 |......8q....M.Lt| -[68f 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7c 08 a7 68 2e c3 d6 b6 48 67 a7 69 |0D. |..h....Hg.i| -00000010 82 56 c7 82 d1 d5 b7 b7 44 b8 40 63 b4 27 e2 b4 |.V......D.@c.'..| -00000020 48 ca 0d 65 02 20 13 49 28 fa 91 26 bd 95 c0 08 |H..e. .I(..&....| -00000030 98 cd 96 39 52 97 c2 d2 eb f5 35 fb de f3 03 39 |...9R.....5....9| -00000040 fd a8 ae e1 34 3b |....4;| -[690 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e758 principal evaluation succeeds for identity 0 -[691 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e758 gate 1515120627763061000 evaluation succeeds -[692 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[693 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[694 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[695 01-05 02:50:27.76 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 02:50:27.76 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 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[698 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[699 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[69a 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[69b 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[69c 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[69d 01-05 02:50:27.76 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 02:50:27.76 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 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[6a0 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[6a1 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[6a2 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6a3 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6a4 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a5 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6a6 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a7 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6a8 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[6a9 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[6aa 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[6ab 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[6ac 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[6ad 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6ae 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[6af 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[6b0 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[6b1 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[6b2 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[6b3 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[6b4 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6b5 01-05 02:50:27.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6b6 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6b7 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[6b8 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6b9 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6ba 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[6bb 01-05 02:50:27.77 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----- +[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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2575,7 +2573,8 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[6bc 01-05 02:50:27.77 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2588,19 +2587,24 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[6bd 01-05 02:50:27.77 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 -[6be 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[6bf 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6c0 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6c1 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6c2 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6c3 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6c4 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[6c5 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[6c6 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6c7 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6c8 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[6c9 01-05 02:50:27.77 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----- +[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 @@ -2615,7 +2619,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[6ca 01-05 02:50:27.77 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----- +[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 @@ -2629,17 +2633,17 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[6cb 01-05 02:50:27.77 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 -[6cc 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6cd 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6ce 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6cf 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6d0 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[6d1 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[6d2 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6d3 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6d4 01-05 02:50:27.77 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[6d5 01-05 02:50:27.78 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----- +[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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2654,7 +2658,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[6d6 01-05 02:50:27.78 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----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2668,115 +2672,115 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[6d7 01-05 02:50:27.78 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 -[6d8 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[6d9 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[6da 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[6db 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[6dc 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[6dd 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[6de 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[6df 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[6e0 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[6e1 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[6e2 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[6e3 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[6e4 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[6e5 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[6e6 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[6e7 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[6e8 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[6e9 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[6ea 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[6eb 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[6ec 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[6ed 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[6ee 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[6ef 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[6f0 01-05 02:50:27.78 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 -[6f1 01-05 02:50:27.78 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 -[6f2 01-05 02:50:27.78 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 -[6f3 01-05 02:50:27.78 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 -[6f4 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[6f5 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[6f6 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[6f7 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[6f8 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[6f9 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[6fa 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[6fb 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[6fc 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[6fd 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[6fe 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[6ff 01-05 02:50:27.78 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 -[700 01-05 02:50:27.78 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 -[701 01-05 02:50:27.78 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 -[702 01-05 02:50:27.78 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 -[703 01-05 02:50:27.78 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 -[704 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[705 01-05 02:50:27.78 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 -[706 01-05 02:50:27.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[707 01-05 02:50:27.79 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 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[709 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[70a 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[70b 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[70c 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[70d 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[70e 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[70f 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[710 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[711 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[712 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[713 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[714 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[715 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[716 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[717 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[718 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[719 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[71a 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[71b 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[71c 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[71d 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[71e 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[71f 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[720 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[721 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[722 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[723 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[724 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[725 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[726 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[727 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[728 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[729 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[72a 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[72b 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...F5B411BA220CF4DBAFCEBB2BD1368C5F -[72c 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: D6A2B27A8ED54786EDE144E5D979C6C510634D064A0287D89A27F8FB22CD705F -[72d 01-05 02:50:27.79 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 -[72e 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[72f 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[730 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[731 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[732 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[733 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...F5B411BA220CF4DBAFCEBB2BD1368C5F -[734 01-05 02:50:27.79 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 555CB5E9EE56501BC2BD5770B55ADB6F2FA14D5673B15F289516C2243B3699B5 -[735 01-05 02:50:27.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x41, 0x81, 0xd6, 0x8a, 0xc7, 0x9d, 0xc1, 0xe7, 0x3d, 0x11, 0x42, 0x46, 0x49, 0x23, 0x2f, 0x26, 0x59, 0xc7, 0xc0, 0xda, 0x50, 0x2c, 0xb, 0xcc, 0xf4, 0x52, 0xeb, 0x97, 0x30, 0x45, 0x3f, 0xd9} txOffsets= +[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= txId= locPointer=offset=70, bytesLength=12151 ] -[736 01-05 02:50:27.80 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] -[737 01-05 02:50:27.80 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -[738 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[739 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:37560 -[73a 01-05 02:50:30.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.4:37560 -[73b 01-05 02:50:30.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 == -[73c 01-05 02:50:30.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 -[73d 01-05 02:50:30.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 == -[73e 01-05 02:50:30.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 -[73f 01-05 02:50:30.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 == -[740 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[741 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2790,63 +2794,58 @@ RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk oOWGb8BDg2Tnm3LS -----END CERTIFICATE----- -[742 01-05 02:50:30.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 0xc4201388a0 gate 1515120630537296100 evaluation starts -[743 01-05 02:50:30.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 0xc4201388a0 signed by 0 principal evaluation starts (used [false]) -[744 01-05 02:50:30.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 0xc4201388a0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[745 01-05 02:50:30.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 0xc4201388a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[746 01-05 02:50:30.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 0xc4201388a0 principal evaluation fails -[747 01-05 02:50:30.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 0xc4201388a0 gate 1515120630537296100 evaluation fails -[748 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[749 01-05 02:50:30.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 -[74a 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[74b 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[74c 01-05 02:50:30.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 -[74d 01-05 02:50:30.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 == -[74e 01-05 02:50:30.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 -[74f 01-05 02:50:30.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 == -[750 01-05 02:50:30.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 0xc4201388b0 gate 1515120630538747700 evaluation starts -[751 01-05 02:50:30.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 0xc4201388b0 signed by 0 principal evaluation starts (used [false]) -[752 01-05 02:50:30.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 0xc4201388b0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[753 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[754 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[755 01-05 02:50:30.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 0xc4201388b0 principal matched by identity 0 -[756 01-05 02:50:30.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 15 9a 88 99 b5 a9 f4 86 d0 1d d8 13 35 3e dd |.............5>.| -00000010 0a b4 47 09 02 81 6a 88 fd 3d 99 7b da db d3 c7 |..G...j..=.{....| -[757 01-05 02:50:30.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 45 02 21 00 97 41 cf 8b 0a 65 0c a9 ca 35 0f |0E.!..A...e...5.| -00000010 65 36 ef f7 25 2e a8 3e 0b 7b 9c d0 3c e2 4b 4f |e6..%..>.{..<.KO| -00000020 a8 75 37 49 e4 02 20 23 1b e4 e3 81 f1 cf 0b 83 |.u7I.. #........| -00000030 93 29 14 a8 10 c8 25 ed ad 9e 38 ed 30 4c c3 26 |.)....%...8.0L.&| -00000040 66 c2 c5 43 f8 06 a3 |f..C...| -[758 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201388b0 principal evaluation succeeds for identity 0 -[759 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201388b0 gate 1515120630538747700 evaluation succeeds -[75a 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[75b 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[75c 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[75d 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[75e 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[75f 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[760 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b55f00) start: > stop: > from 172.18.0.4:37560 -[761 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[762 01-05 02:50:30.54 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] -[763 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -[764 01-05 02:50:30.54 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]} -[765 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[766 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -[767 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[768 01-05 02:50:30.54 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]} -[769 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[76a 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -[76b 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[76c 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[76d 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.2:38300 -[76e 01-05 02:50:30.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.2:38300 -[76f 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[770 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[771 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[772 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[773 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[774 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[775 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- MIICGjCCAcCgAwIBAgIRAPlZcLcMzfzgE68ZzSaaSeYwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2860,72 +2859,49 @@ RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDQ6Mu6 IJy8t//KkpCBNH4c9Mk+aUiVWxtwHocE8RGG6wIgV0wXUAj7zF1kM8R0oHPeIjO1 dblSJ0Unez2++mFCUWE= -----END CERTIFICATE----- -[776 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120631004244600 evaluation starts -[777 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 signed by 0 principal evaluation starts (used [false]) -[778 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[779 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[77a 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 principal evaluation fails -[77b 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120631004244600 evaluation fails -[77c 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[77d 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[77e 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[77f 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[780 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[781 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[782 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[783 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[784 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d0 gate 1515120631006983300 evaluation starts -[785 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 signed by 0 principal evaluation starts (used [false]) -[786 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[787 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[788 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d0 principal evaluation fails -[789 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d0 gate 1515120631006983300 evaluation fails -[78a 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[78b 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[78c 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[78d 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1515120631009488400 evaluation starts -[78e 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -[78f 01-05 02:50:31.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241506c5a634c634d7a667a674536385a7a53616153655977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142497354466f667446536268515733794b54582b6251432b52792f337a3974780a722f58383436514146493346583444493542673149437677527a54464461314c426b75596869566b46596635513653326f584654416d366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514451364d75360a494a7938742f2f4b6b7043424e483463394d6b2b6155695657787477486f634538524747367749675630775855416a377a46316b4d3852306f485065496a4f310a64626c534a30556e657a322b2b6d46435557453d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[790 01-05 02:50:31.01 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 -[791 01-05 02:50:31.01 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 -[792 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal matched by identity 0 -[793 01-05 02:50:31.01 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 9b fd 25 8d e1 31 d1 69 9e 5e 7e 3d a8 a9 c7 4a |..%..1.i.^~=...J| -00000010 66 ba 46 46 eb 90 cd bc f7 0b f9 86 63 3b a1 bc |f.FF........c;..| -[794 01-05 02:50:31.01 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 09 3f 1e a4 f1 db 5f 13 bf b5 fa 34 |0D. .?...._....4| -00000010 75 2d 5c e2 c3 c7 65 7c c5 75 d9 d8 d2 94 5c c4 |u-\...e|.u....\.| -00000020 fb 8d 68 c7 02 20 17 bf 6b 7c b7 15 b6 41 c0 5b |..h.. ..k|...A.[| -00000030 59 9f ef 8f e9 49 88 95 69 67 a6 44 c4 54 ea 8d |Y....I..ig.D.T..| -00000040 86 ce 8c b2 fa 61 |.....a| -[795 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation succeeds for identity 0 -[796 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1515120631009488400 evaluation succeeds -[797 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[798 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[799 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[79a 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[79b 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[79c 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[79d 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b65ae0) start: > stop: > from 172.18.0.2:38300 -[79e 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[79f 01-05 02:50:31.01 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] -[7a0 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -[7a1 01-05 02:50:31.01 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]} -[7a2 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[7a3 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65ae0) for 172.18.0.2:38300 -[7a4 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[7a5 01-05 02:50:31.01 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]} -[7a6 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[7a7 01-05 02:50:31.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65ae0) for 172.18.0.2:38300 -[7a8 01-05 02:50:31.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[7a9 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[7aa 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:51548 -[7ab 01-05 02:50:31.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:51548 -[7ac 01-05 02:50:31.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 == -[7ad 01-05 02:50:31.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 -[7ae 01-05 02:50:31.23 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 == -[7af 01-05 02:50:31.23 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 -[7b0 01-05 02:50:31.23 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 == -[7b1 01-05 02:50:31.23 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 -[7b2 01-05 02:50:31.23 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----- +[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----- MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2939,72 +2915,49 @@ RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB IMM+3uC8p/M1qCSaOiQ= -----END CERTIFICATE----- -[7b3 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e198 gate 1515120631233200700 evaluation starts -[7b4 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 signed by 0 principal evaluation starts (used [false]) -[7b5 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7b6 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[7b7 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e198 principal evaluation fails -[7b8 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e198 gate 1515120631233200700 evaluation fails -[7b9 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[7ba 01-05 02:50:31.23 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 -[7bb 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[7bc 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[7bd 01-05 02:50:31.23 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 -[7be 01-05 02:50:31.23 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 == -[7bf 01-05 02:50:31.23 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 -[7c0 01-05 02:50:31.23 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 == -[7c1 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120631237007500 evaluation starts -[7c2 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 signed by 0 principal evaluation starts (used [false]) -[7c3 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7c4 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[7c5 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 principal evaluation fails -[7c6 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120631237007500 evaluation fails -[7c7 01-05 02:50:31.23 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 -[7c8 01-05 02:50:31.23 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 -[7c9 01-05 02:50:31.23 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 == -[7ca 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120631237723400 evaluation starts -[7cb 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 signed by 0 principal evaluation starts (used [false]) -[7cc 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7cd 01-05 02:50:31.23 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 -[7ce 01-05 02:50:31.23 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 -[7cf 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 principal matched by identity 0 -[7d0 01-05 02:50:31.23 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 fb 95 b2 6f 4f 60 c9 d3 96 27 d2 13 57 7a a4 13 |...oO`...'..Wz..| -00000010 6f 54 80 9c 69 49 9d 38 68 10 82 0a e3 57 cb de |oT..iI.8h....W..| -[7d1 01-05 02:50:31.23 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 7e 75 74 a7 73 f0 d3 10 07 a8 cf d9 |0D. ~ut.s.......| -00000010 bd 33 64 3d 36 47 c0 e0 0a a1 e6 96 ac 37 71 e9 |.3d=6G.......7q.| -00000020 4e d2 21 63 02 20 12 7b 95 00 67 c2 c0 f7 c7 3a |N.!c. .{..g....:| -00000030 9e 73 24 86 00 60 e3 f0 9c 98 3a 67 63 77 bc ee |.s$..`....:gcw..| -00000040 99 8d 83 c2 0e 04 |......| -[7d2 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 principal evaluation succeeds for identity 0 -[7d3 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120631237723400 evaluation succeeds -[7d4 01-05 02:50:31.23 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 -[7d5 01-05 02:50:31.23 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 -[7d6 01-05 02:50:31.23 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 -[7d7 01-05 02:50:31.23 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 -[7d8 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[7d9 01-05 02:50:31.23 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 -[7da 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209edaa0) start: > stop: > from 172.18.0.5:51548 -[7db 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[7dc 01-05 02:50:31.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=[12121] -[7dd 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27972], Going to peek [8] bytes -[7de 01-05 02:50:31.23 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]} -[7df 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[7e0 01-05 02:50:31.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -[7e1 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[7e2 01-05 02:50:31.24 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]} -[7e3 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[7e4 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -[7e5 01-05 02:50:31.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[7e6 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[7e7 01-05 02:50:32.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:47226 -[7e8 01-05 02:50:39.47 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:47226 with txid '49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993' of type ENDORSER_TRANSACTION -[7e9 01-05 02:50:39.47 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 == -[7ea 01-05 02:50:39.47 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 -[7eb 01-05 02:50:39.47 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 == -[7ec 01-05 02:50:39.47 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 -[7ed 01-05 02:50:39.47 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 == -[7ee 01-05 02:50:39.47 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 -[7ef 01-05 02:50:39.47 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----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3018,95 +2971,90 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[7f0 01-05 02:50:39.47 UTC] [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 0xc42000e228 gate 1515120639478050100 evaluation starts -[7f1 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 signed by 0 principal evaluation starts (used [false]) -[7f2 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7f3 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[7f4 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e228 principal evaluation fails -[7f5 01-05 02:50:39.47 UTC] [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 0xc42000e228 gate 1515120639478050100 evaluation fails -[7f6 01-05 02:50:39.47 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 -[7f7 01-05 02:50:39.47 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 -[7f8 01-05 02:50:39.47 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 ] -[7f9 01-05 02:50:39.47 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 -[7fa 01-05 02:50:39.47 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 -[7fb 01-05 02:50:39.47 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 == -[7fc 01-05 02:50:39.47 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 -[7fd 01-05 02:50:39.47 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 == -[7fe 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515120639479510700 evaluation starts -[7ff 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -[800 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[801 01-05 02:50:39.47 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 -[802 01-05 02:50:39.48 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 -[803 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -[804 01-05 02:50:39.48 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 90 8e 08 ef ca 42 50 32 a4 d8 3e 9a b0 d0 32 b1 |.....BP2..>...2.| -00000010 34 4c bc 4b 46 50 75 a8 f0 95 5c 95 b3 40 cb 3c |4L.KFPu...\..@.<| -[805 01-05 02:50:39.48 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 21 de 09 4d 49 41 5e 85 4d f4 9f c2 |0D. !..MIA^.M...| -00000010 e0 19 74 db 9e 00 e3 1f 91 92 b0 1d 2a a8 d6 8b |..t.........*...| -00000020 a5 2d c3 f8 02 20 66 92 6e ab 7f ba d9 86 82 b5 |.-... f.n.......| -00000030 00 b5 08 23 dc 7b 27 64 6c b6 59 e6 b9 9f 9c 32 |...#.{'dl.Y....2| -00000040 2c d8 6e da 57 d4 |,.n.W.| -[806 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -[807 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1515120639479510700 evaluation succeeds -[808 01-05 02:50:39.48 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 -[809 01-05 02:50:39.48 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 -[80a 01-05 02:50:39.48 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 -[80b 01-05 02:50:39.48 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 -[80c 01-05 02:50:39.48 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 -[80d 01-05 02:50:39.48 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 -[80e 01-05 02:50:39.48 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:47226 -[80f 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[810 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47226: rpc error: code = Canceled desc = context canceled -[811 01-05 02:50:39.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[812 01-05 02:50:39.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[813 01-05 02:50:39.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:47234 -[814 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[815 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[816 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[817 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[818 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[819 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...67355EE166510B3E46BAD9D14682C851 -[81a 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DBE3DCD3BE66E9D53F978D5F2021DA86E98AF4E6C4AE81BB3922091F3F2FABE5 -[81b 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[81c 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[81d 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[81e 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[81f 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[820 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...67355EE166510B3E46BAD9D14682C851 -[821 01-05 02:50:41.48 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 2B46EBF76868AC691D01285BBD910EB120F98176381828ECD474D7E2986CE06A -[822 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe, 0x90, 0x8f, 0xe0, 0x5d, 0x11, 0xe, 0x2b, 0x26, 0x2, 0x93, 0x17, 0xd8, 0xf4, 0xe7, 0xf8, 0x68, 0xa3, 0x4e, 0xab, 0x6, 0x60, 0xe1, 0x9e, 0xc6, 0x8a, 0x90, 0xc8, 0x16, 0x7f, 0xf0, 0xb9} txOffsets= -txId=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 locPointer=offset=70, bytesLength=3455 +[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 ] -[823 01-05 02:50:41.55 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] -[825 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[826 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes -[827 01-05 02:50:41.55 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]} -[828 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -[829 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -[82a 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[82b 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[82c 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes -[82d 01-05 02:50:41.55 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]} -[82e 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -[82f 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65ae0) for 172.18.0.2:38300 -[830 01-05 02:50:41.55 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:38300: rpc error: code = Unavailable desc = transport is closing -[831 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[832 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[833 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[834 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[835 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5319], Going to peek [8] bytes -[836 01-05 02:50:41.55 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]} -[837 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -[838 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -[839 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[824 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -[83a 01-05 02:50:47.99 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:47234 with txid 'c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc' of type ENDORSER_TRANSACTION -[83b 01-05 02:50:47.99 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 == -[83c 01-05 02:50:47.99 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 -[83d 01-05 02:50:47.99 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 == -[83e 01-05 02:50:47.99 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 -[83f 01-05 02:50:47.99 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 == -[840 01-05 02:50:47.99 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 -[841 01-05 02:50:47.99 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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3120,261 +3068,210 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[842 01-05 02:50:47.99 UTC] [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 0xc42000e270 gate 1515120647998726400 evaluation starts -[843 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) -[844 01-05 02:50:47.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[845 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[846 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation fails -[847 01-05 02:50:48.00 UTC] [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 0xc42000e270 gate 1515120647998726400 evaluation fails -[848 01-05 02:50:48.00 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 -[849 01-05 02:50:48.00 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 -[84a 01-05 02:50:48.00 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 ] -[84b 01-05 02:50:48.00 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 -[84c 01-05 02:50:48.00 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 -[84d 01-05 02:50:48.00 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 == -[84e 01-05 02:50:48.00 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 -[84f 01-05 02:50:48.00 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 == -[850 01-05 02:50:48.00 UTC] [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 0xc42000e008 gate 1515120648001244100 evaluation starts -[851 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) -[852 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[853 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[854 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal evaluation fails -[855 01-05 02:50:48.00 UTC] [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 0xc42000e008 gate 1515120648001244100 evaluation fails -[856 01-05 02:50:48.00 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 -[857 01-05 02:50:48.00 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 -[858 01-05 02:50:48.00 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 == -[859 01-05 02:50:48.00 UTC] [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 0xc42000e028 gate 1515120648002825600 evaluation starts -[85a 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 signed by 0 principal evaluation starts (used [false]) -[85b 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[85c 01-05 02:50:48.00 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 -[85d 01-05 02:50:48.00 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 -[85e 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 principal matched by identity 0 -[85f 01-05 02:50:48.00 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 6c de 09 a0 95 18 79 a0 fd c2 ec a6 1a 01 b5 56 |l.....y........V| -00000010 cd c1 1c 3e 43 c2 9a 61 2b 80 39 eb 9a 13 cc 36 |...>C..a+.9....6| -[860 01-05 02:50:48.00 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 b1 02 09 b5 22 65 22 4d 73 9f 11 |0E.!....."e"Ms..| -00000010 9a 47 4c 28 85 83 28 6d 81 f2 ee 13 c0 b9 07 c6 |.GL(..(m........| -00000020 d2 67 59 a7 4c 02 20 3e 7d 96 da 12 d5 a6 a0 68 |.gY.L. >}......h| -00000030 b7 f2 cd 1f bd 11 4a f1 30 64 81 58 5a 35 8b c3 |......J.0d.XZ5..| -00000040 0b 11 64 29 d8 fd b6 |..d)...| -[861 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e028 principal evaluation succeeds for identity 0 -[862 01-05 02:50:48.00 UTC] [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 0xc42000e028 gate 1515120648002825600 evaluation succeeds -[863 01-05 02:50:48.00 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 -[864 01-05 02:50:48.00 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 -[865 01-05 02:50:48.00 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 -[866 01-05 02:50:48.00 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 -[867 01-05 02:50:48.00 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 -[868 01-05 02:50:48.00 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 -[869 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:47234 -[86a 01-05 02:50:48.00 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[86b 01-05 02:50:48.01 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.6:7050->172.18.0.7:47234: read: connection reset by peer -[86c 01-05 02:50:48.01 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47234: rpc error: code = Canceled desc = context canceled -[86d 01-05 02:50:48.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[86e 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[86f 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[870 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[871 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[872 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[873 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A9AAF7C882DCCF11EF85E47BC4D5FF02 -[874 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 7E160CB3B8A6A339A1BC3D80A023881DE2E52CF239A790EEF05A7EE486C2DE44 -[875 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[876 01-05 02:50:50.00 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[877 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[878 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[879 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[87a 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A9AAF7C882DCCF11EF85E47BC4D5FF02 -[87b 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 5A6D31808E814A16B9B425531C42791761A2D8CAD03F3A132AD49D1340BB4FF8 -[87c 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x4, 0x54, 0x21, 0x67, 0xdf, 0x21, 0x1b, 0x2e, 0xa, 0xd7, 0xd0, 0x9, 0xa7, 0xc, 0xf3, 0x44, 0x38, 0x6f, 0x1f, 0x90, 0x3, 0x52, 0xcd, 0xef, 0x5, 0x8a, 0x93, 0xb8, 0xa, 0xcf, 0x60, 0x61} txOffsets= -txId=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc locPointer=offset=70, bytesLength=3460 +[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 ] -[87d 01-05 02:50:50.01 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] -[87e 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -[87f 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -[880 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5325], Going to peek [8] bytes -[881 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -[883 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5325], Going to peek [8] bytes -[882 01-05 02:50:50.01 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]} -[885 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] -[884 01-05 02:50:50.01 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]} -[887 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -[886 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] -[888 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -[889 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -[88a 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -[88b 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[88c 01-05 02:50:56.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.7:47244 -[88d 01-05 02:50:56.11 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:47244 with txid '48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070' of type ENDORSER_TRANSACTION -[88e 01-05 02:50:56.11 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 == -[88f 01-05 02:50:56.11 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 -[890 01-05 02:50:56.11 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 == -[891 01-05 02:50:56.11 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 -[892 01-05 02:50:56.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 == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[893 01-05 02:50:56.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 0xc420138528 gate 1515120656116407100 evaluation starts -[894 01-05 02:50:56.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 0xc420138528 signed by 0 principal evaluation starts (used [false]) -[895 01-05 02:50:56.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 0xc420138528 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[896 01-05 02:50:56.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 0xc420138528 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[897 01-05 02:50:56.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 0xc420138528 principal evaluation fails -[898 01-05 02:50:56.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 0xc420138528 gate 1515120656116407100 evaluation fails -[899 01-05 02:50:56.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 did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[89a 01-05 02:50:56.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/Orderer/OrdererOrg/Writers -[89b 01-05 02:50:56.11 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 ] -[89c 01-05 02:50:56.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 did not satisfy policy /Channel/Orderer/Writers -[89d 01-05 02:50:56.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/Orderer/Writers -[89e 01-05 02:50:56.11 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 == -[89f 01-05 02:50:56.11 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 -[8a0 01-05 02:50:56.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 == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[8a1 01-05 02:50:56.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 0xc420138568 gate 1515120656117003600 evaluation starts -[8a2 01-05 02:50:56.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 0xc420138568 signed by 0 principal evaluation starts (used [false]) -[8a3 01-05 02:50:56.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 0xc420138568 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8a4 01-05 02:50:56.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 Org1MSP -[8a5 01-05 02:50:56.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 Org1MSP validating identity -[8a6 01-05 02:50:56.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 0xc420138568 principal matched by identity 0 -[8a7 01-05 02:50:56.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 ff 58 15 d4 94 4d c3 57 6b d3 b9 ee 2e 04 8e fe |.X...M.Wk.......| -00000010 4f 35 ec 3c 8d f6 b5 e5 13 f3 de 7e d1 8c 4c 37 |O5.<.......~..L7| -[8a8 01-05 02:50:56.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 45 02 21 00 be 5c 17 cc 82 a0 4b a4 33 0e d1 |0E.!..\....K.3..| -00000010 15 83 73 3e 7c 9f 44 bc ec 5e 70 a4 ca 6a 61 69 |..s>|.D..^p..jai| -00000020 17 95 90 e2 e0 02 20 5f 8e 61 fe be 08 46 34 4e |...... _.a...F4N| -00000030 c0 ae fa 4d 39 17 d6 bc f8 67 1e b0 ea 62 04 c8 |...M9....g...b..| -00000040 94 da 74 e7 36 13 c7 |..t.6..| -[8a9 01-05 02:50:56.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 0xc420138568 principal evaluation succeeds for identity 0 -[8aa 01-05 02:50:56.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 0xc420138568 gate 1515120656117003600 evaluation succeeds -[8ab 01-05 02:50:56.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/Org1MSP/Writers -[8ac 01-05 02:50:56.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/Org1MSP/Writers -[8ad 01-05 02:50:56.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 -[8ae 01-05 02:50:56.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 -[8af 01-05 02:50:56.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 -[8b0 01-05 02:50:56.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 -[8b1 01-05 02:50:56.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.7:47244 -[8b2 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[8b3 01-05 02:50:56.12 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47244: rpc error: code = Canceled desc = context canceled -[8b4 01-05 02:50:56.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[8b5 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[8b6 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8b7 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8b8 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8b9 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8ba 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A98949F6C1D67BD3D037A43560B0C840 -[8bb 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: ABA11BD6D3DE3FB26DD95081B9AFF9EDC9FB33E64E1C613F2B7F9BF80E314544 -[8bc 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8bd 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8be 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[8bf 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8c0 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8c1 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A98949F6C1D67BD3D037A43560B0C840 -[8c2 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C313B769024288ED4574F9074E6F929D2711DACC8F2B68ED214A2C25333F9E7B -[8c3 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x1a, 0x80, 0x18, 0x1d, 0x93, 0xc3, 0x60, 0x8e, 0xce, 0xbf, 0x47, 0x31, 0xed, 0x4e, 0xf9, 0xa0, 0x87, 0xb9, 0xd2, 0xce, 0x1f, 0xf7, 0x3b, 0xc3, 0xc0, 0x4d, 0x5a, 0xeb, 0x7b, 0x63, 0x3c, 0x18} txOffsets= -txId=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 locPointer=offset=70, bytesLength=2917 +[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 ] -[8c4 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55518], isChainEmpty=[false], lastBlockNumber=[5] -[8c5 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -[8c6 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -[8c7 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4781], Going to peek [8] bytes -[8c8 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4779], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} -[8c9 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4779] read from file [0] -[8ca 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -[8cc 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4781], Going to peek [8] bytes -[8cd 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4779], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} -[8ce 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4779] read from file [0] -[8cb 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -[8cf 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -[8d0 01-05 02:50:58.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -[8d1 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -[8d2 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[8d3 01-05 02:51:03.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:47254 -[8d4 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:47254 with txid '35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403' of type ENDORSER_TRANSACTION -[8d5 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[8d6 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8d7 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[8d8 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8d9 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[8da 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120663631096100 evaluation starts -[8db 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 signed by 0 principal evaluation starts (used [false]) -[8dc 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8dd 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[8de 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1a8 principal evaluation fails -[8df 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1a8 gate 1515120663631096100 evaluation fails -[8e0 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[8e1 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[8e2 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[8e3 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[8e4 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[8e5 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[8e6 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8e7 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[8e8 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120663632467800 evaluation starts -[8e9 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 signed by 0 principal evaluation starts (used [false]) -[8ea 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8eb 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[8ec 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b8 principal evaluation fails -[8ed 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b8 gate 1515120663632467800 evaluation fails -[8ee 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -[8ef 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[8f0 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[8f1 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515120663633357400 evaluation starts -[8f2 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) -[8f3 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8f4 01-05 02:51:03.63 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 -[8f5 01-05 02:51:03.63 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 -[8f6 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal matched by identity 0 -[8f7 01-05 02:51:03.63 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 9c 4e 53 c2 24 82 c8 7b 4e e3 64 b8 b1 b0 c2 c0 |.NS.$..{N.d.....| -00000010 6a 85 7a 93 15 a5 85 23 2a c9 8b a5 fe 0e 80 f6 |j.z....#*.......| -[8f8 01-05 02:51:03.63 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 6e 12 b0 6f ee bc 31 bd 98 c7 a3 b5 |0D. n..o..1.....| -00000010 11 55 a7 3e 08 9c 29 3e da a7 b9 8c c8 63 e4 da |.U.>..)>.....c..| -00000020 3f 11 69 6b 02 20 69 f9 b1 10 72 01 92 10 b2 55 |?.ik. i...r....U| -00000030 5a f7 3f 91 f0 aa 7b 57 43 d1 b4 8b 18 63 09 bf |Z.?...{WC....c..| -00000040 19 7e 9b ea 44 a3 |.~..D.| -[8f9 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation succeeds for identity 0 -[8fa 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1515120663633357400 evaluation succeeds -[8fb 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -[8fc 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[8fd 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[8fe 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[8ff 01-05 02:51:03.63 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 -[900 01-05 02:51:03.63 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 -[901 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:47254 -[902 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[903 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47254: rpc error: code = Canceled desc = context canceled -[904 01-05 02:51:03.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[905 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[906 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[907 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[908 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[909 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[90a 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...92DFBF9FE685721D5684D093AE33D425 -[90b 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: FC5A9449A9BB79992B2D45774B55BC97A52A4E5D8D7419FF4E9EE8C2052BA0A6 -[90c 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[90d 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[90e 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[90f 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[910 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[911 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...92DFBF9FE685721D5684D093AE33D425 -[912 01-05 02:51:05.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DB866622D2A9D08CC3C9F9D247076EF93BCE044CA6E5C9D1D86A5E582F72CE39 -[913 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x97, 0xdc, 0xe2, 0x89, 0x84, 0x47, 0xe2, 0x45, 0x40, 0xea, 0x20, 0xe4, 0xf, 0x22, 0x6b, 0x86, 0x1e, 0x9c, 0x6d, 0x3a, 0xe1, 0x5e, 0x59, 0xbd, 0xd4, 0x2c, 0x25, 0x5b, 0x47, 0x73, 0xa2, 0xfc} txOffsets= -txId=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 locPointer=offset=70, bytesLength=2921 +[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 ] -[914 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60303], isChainEmpty=[false], lastBlockNumber=[6] -[916 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[917 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[918 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -[915 01-05 02:51:05.64 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -[91a 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[91b 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[919 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[91c 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -[91d 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -[91e 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[91f 01-05 02:51:05.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -[920 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[921 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[922 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[923 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47274 -[924 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47274 -[925 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[926 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[927 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[928 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[929 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[92a 01-05 02:51:06.18 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 -[92b 01-05 02:51:06.18 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3387,453 +3284,683 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[92c 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515120666185077900 evaluation starts -[92d 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -[92e 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[92f 01-05 02:51:06.18 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 -[930 01-05 02:51:06.18 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 -[931 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal matched by identity 0 -[932 01-05 02:51:06.18 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 33 19 70 d9 74 40 19 ac 4e 2b 21 18 75 8e 88 31 |3.p.t@..N+!.u..1| -00000010 5a 67 21 f2 e8 22 67 3a 59 0a c1 0e fe 29 38 be |Zg!.."g:Y....)8.| -[933 01-05 02:51:06.18 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 22 be 67 ef 28 61 01 7b 1e 22 c2 c8 |0D. ".g.(a.{."..| -00000010 aa e5 b2 d1 e4 a0 16 26 cf 68 c0 af 4d b9 e7 62 |.......&.h..M..b| -00000020 e5 b0 bb 19 02 20 5a 07 b7 97 a5 59 c3 ca f3 12 |..... Z....Y....| -00000030 0b e2 3e 3c 37 4b 87 f3 b1 26 fa 78 57 7a 16 0d |..><7K...&.xWz..| -00000040 8b b9 5b 8f 04 32 |..[..2| -[934 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation succeeds for identity 0 -[935 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1515120666185077900 evaluation succeeds -[936 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[937 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[938 01-05 02:51:06.18 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 -[939 01-05 02:51:06.18 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 -[93a 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[93b 01-05 02:51:06.18 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 -[93c 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5c480) start: > stop: > from 172.18.0.7:47274 -[93d 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[93e 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] -[93f 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[940 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -[941 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[942 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5c480) for 172.18.0.7:47274 -[943 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47274 for (0xc420a5c480) -[944 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47274 -[945 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47274 -[946 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[947 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[948 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[949 01-05 02:51:06.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[94a 01-05 02:51:06.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47274: rpc error: code = Canceled desc = context canceled -[94b 01-05 02:51:06.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[94c 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[94d 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47276 -[94e 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47276 -[94f 01-05 02:51:06.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[950 01-05 02:51:06.43 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 -[951 01-05 02:51:06.43 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 == -[952 01-05 02:51:06.43 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 -[953 01-05 02:51:06.43 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 == -[954 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138608 gate 1515120666431184100 evaluation starts -[955 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 signed by 0 principal evaluation starts (used [false]) -[956 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[957 01-05 02:51:06.43 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 -[958 01-05 02:51:06.43 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 -[959 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 principal matched by identity 0 -[95a 01-05 02:51:06.43 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 0e 51 54 10 eb 71 46 63 2c 31 67 8d 66 d9 14 c3 |.QT..qFc,1g.f...| -00000010 70 32 69 4d 04 1f d9 0e 86 ed da 77 71 cf 45 74 |p2iM.......wq.Et| -[95b 01-05 02:51:06.43 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 96 71 98 8b a6 53 76 a2 5a f3 d1 |0E.!..q...Sv.Z..| -00000010 8f a3 e0 f8 53 83 f0 7b 4c 9f e4 77 d6 4a b3 b5 |....S..{L..w.J..| -00000020 e8 a5 75 2d e1 02 20 7e 87 a9 ed 84 b0 c1 24 03 |..u-.. ~......$.| -00000030 44 dc 67 76 97 4e 57 10 c1 21 9e 99 ac a9 1e 69 |D.gv.NW..!.....i| -00000040 89 7a 4d ee 5d f3 60 |.zM.].`| -[95c 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138608 principal evaluation succeeds for identity 0 -[95d 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138608 gate 1515120666431184100 evaluation succeeds -[95e 01-05 02:51:06.43 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 -[95f 01-05 02:51:06.43 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 -[960 01-05 02:51:06.43 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 -[961 01-05 02:51:06.43 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 -[962 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[963 01-05 02:51:06.43 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 -[964 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b54480) start: > stop: > from 172.18.0.7:47276 -[965 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[966 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] -[967 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[968 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -[969 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[96a 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b54480) for 172.18.0.7:47276 -[96b 01-05 02:51:06.43 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:47276 for (0xc420b54480) -[96d 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[96e 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[96c 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47276 -[970 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[971 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[96f 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47276 -[972 01-05 02:51:06.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[973 01-05 02:51:06.43 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 -[974 01-05 02:51:06.43 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 == -[975 01-05 02:51:06.43 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 -[976 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[977 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138648 gate 1515120666440156200 evaluation starts -[978 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 signed by 0 principal evaluation starts (used [false]) -[979 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[97a 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[97b 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[97c 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 principal matched by identity 0 -[97d 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 61 6b 29 95 62 80 46 7c 28 46 de b2 db 1c f9 c4 |ak).b.F|(F......| -00000010 f4 29 54 46 7e b5 de 41 4e 49 69 fa e8 65 8d 98 |.)TF~..ANIi..e..| -[97e 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c5 7d c9 7a b9 c5 c2 91 98 f6 55 |0E.!..}.z......U| -00000010 73 4c d8 7a d9 6f 73 eb 5c 52 61 a7 c2 3a 70 1d |sL.z.os.\Ra..:p.| -00000020 37 a9 1c a3 7b 02 20 6b 5e 12 f9 47 60 2f 68 41 |7...{. k^..G`/hA| -00000030 b3 2c 3f e3 aa 5b 82 95 4f 80 c5 96 13 70 c8 43 |.,?..[..O....p.C| -00000040 c1 47 db 83 4a 97 5d |.G..J.]| -[97f 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138648 principal evaluation succeeds for identity 0 -[980 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138648 gate 1515120666440156200 evaluation succeeds -[981 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[982 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[983 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[984 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[985 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[986 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[987 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b54fc0) start: > stop: > from 172.18.0.7:47276 -[988 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[989 01-05 02:51:06.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=[26078] -[98a 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34225], Going to peek [8] bytes -[98b 01-05 02:51:06.44 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]} -[98c 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[98d 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b54fc0) for 172.18.0.7:47276 -[98e 01-05 02:51:06.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.7:47276 for (0xc420b54fc0) -[990 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[991 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[98f 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47276 -[993 01-05 02:51:06.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.7:47276 -[992 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[994 01-05 02:51:06.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[995 01-05 02:51:06.45 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47276: rpc error: code = Canceled desc = context canceled -[996 01-05 02:51:06.45 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[997 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[998 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47278 -[999 01-05 02:51:06.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:47278 -[99a 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[99b 01-05 02:51:06.60 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 -[99c 01-05 02:51:06.60 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 == -[99d 01-05 02:51:06.60 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 -[99e 01-05 02:51:06.60 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 == -[99f 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c8 gate 1515120666608567100 evaluation starts -[9a0 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 signed by 0 principal evaluation starts (used [false]) -[9a1 01-05 02:51:06.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9a2 01-05 02:51:06.60 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 -[9a3 01-05 02:51:06.60 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 -[9a4 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 principal matched by identity 0 -[9a5 01-05 02:51:06.61 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 45 79 fe d9 6c f0 34 5d 07 1d 4e b8 6f fd fb e7 |Ey..l.4]..N.o...| -00000010 ab 76 91 b3 e5 c1 fc 18 20 3d 75 72 86 4b 12 09 |.v...... =ur.K..| -[9a6 01-05 02:51:06.61 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 94 ce e5 79 3f 11 81 48 b2 62 d8 |0E.!....y?..H.b.| -00000010 e3 5e 0f 1b 91 ee 32 d3 88 08 a8 39 f0 4a 24 7f |.^....2....9.J$.| -00000020 03 6b c1 06 6c 02 20 4c 40 18 e9 bd 3e 47 c4 e6 |.k..l. L@...>G..| -00000030 44 4f b4 81 29 6d f3 d4 50 dc 4e af a9 81 cc 2a |DO..)m..P.N....*| -00000040 36 4d 79 dd 16 23 49 |6My..#I| -[9a7 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c8 principal evaluation succeeds for identity 0 -[9a8 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c8 gate 1515120666608567100 evaluation succeeds -[9a9 01-05 02:51:06.61 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 -[9aa 01-05 02:51:06.61 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 -[9ab 01-05 02:51:06.61 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 -[9ac 01-05 02:51:06.61 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 -[9ad 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[9ae 01-05 02:51:06.61 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 -[9af 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5ce60) start: > stop: > from 172.18.0.7:47278 -[9b0 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[9b1 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[9b2 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60303], Going to peek [8] bytes -[9b3 01-05 02:51:06.61 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]} -[9b4 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] -[9b5 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5ce60) for 172.18.0.7:47278 -[9b6 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47278 for (0xc420a5ce60) -[9b7 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47278 -[9b9 01-05 02:51:06.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:47278 -[9b8 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9ba 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9bb 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9bc 01-05 02:51:06.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9bd 01-05 02:51:06.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47278: rpc error: code = Canceled desc = context canceled -[9be 01-05 02:51:06.62 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[9bf 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[9c0 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47280 -[9c1 01-05 02:51:06.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:47280 -[9c2 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[9c3 01-05 02:51:06.83 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 -[9c4 01-05 02:51:06.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 == -[9c5 01-05 02:51:06.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 -[9c6 01-05 02:51:06.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 == -[9c7 01-05 02:51:06.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 0xc42000e318 gate 1515120666836482100 evaluation starts -[9c8 01-05 02:51:06.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 0xc42000e318 signed by 0 principal evaluation starts (used [false]) -[9c9 01-05 02:51:06.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 0xc42000e318 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9ca 01-05 02:51:06.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 -[9cb 01-05 02:51:06.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 -[9cc 01-05 02:51:06.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 0xc42000e318 principal matched by identity 0 -[9cd 01-05 02:51:06.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 0a 59 9e b2 16 8c 97 f3 ed 26 21 0a 52 63 81 1d |.Y.......&!.Rc..| -00000010 f5 92 d6 6e b6 6a 7d f1 3e 40 ff f9 e8 4d 72 a7 |...n.j}.>@...Mr.| -[9ce 01-05 02:51:06.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 45 ac d2 0f 58 f3 37 46 2d 20 55 76 |0D. E...X.7F- Uv| -00000010 cb cd e8 36 82 b7 a9 bc e7 c2 46 6e 93 e3 06 ca |...6......Fn....| -00000020 43 35 54 1e 02 20 1e 9e bb 1a 06 23 89 64 31 65 |C5T.. .....#.d1e| -00000030 69 6e f9 de 33 61 eb 65 8e a0 e4 86 11 91 95 0a |in..3a.e........| -00000040 24 4e 2c e7 41 f1 |$N,.A.| -[9cf 01-05 02:51:06.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 0xc42000e318 principal evaluation succeeds for identity 0 -[9d0 01-05 02:51:06.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 0xc42000e318 gate 1515120666836482100 evaluation succeeds -[9d1 01-05 02:51:06.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 -[9d2 01-05 02:51:06.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 -[9d3 01-05 02:51:06.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 -[9d4 01-05 02:51:06.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 -[9d5 01-05 02:51:06.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 -[9d6 01-05 02:51:06.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 -[9d7 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5d880) start: > stop: > from 172.18.0.7:47280 -[9d8 01-05 02:51:06.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[9d9 01-05 02:51:06.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=[12121] -[9da 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48182], Going to peek [8] bytes -[9db 01-05 02:51:06.84 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]} -[9dc 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13955] read from file [0] -[9dd 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5d880) for 172.18.0.7:47280 -[9de 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47280 for (0xc420a5d880) -[9df 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47280 -[9e1 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47280 -[9e0 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9e2 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9e3 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9e4 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9e5 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47280: rpc error: code = Canceled desc = context canceled -[9e6 01-05 02:51:06.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[9e7 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[9e8 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47282 -[9e9 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47282 -[9ea 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[9eb 01-05 02:51:06.96 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 -[9ec 01-05 02:51:06.96 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 == -[9ed 01-05 02:51:06.96 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 -[9ee 01-05 02:51:06.96 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 == -[9ef 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e360 gate 1515120666965932800 evaluation starts -[9f0 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 signed by 0 principal evaluation starts (used [false]) -[9f1 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9f2 01-05 02:51:06.96 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 -[9f3 01-05 02:51:06.96 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 -[9f4 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 principal matched by identity 0 -[9f5 01-05 02:51:06.96 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 3c 6d 68 dd 3c 84 84 44 7a d4 52 e0 54 6f 65 |. DEBU Verify: sig = 00000000 30 45 02 21 00 86 7e 7a 6b c2 c0 b9 1f 46 d0 f3 |0E.!..~zk....F..| -00000010 ba d6 80 a9 52 31 0b 8b 81 bb de a6 63 13 35 cd |....R1......c.5.| -00000020 3c 93 bc ec 09 02 20 76 6e 2c 50 99 66 2e 84 3a |<..... vn,P.f..:| -00000030 5a c6 09 d6 20 b5 1d 6c c7 e1 16 83 96 01 b4 72 |Z... ..l.......r| -00000040 23 eb 62 db b5 e8 81 |#.b....| -[9f7 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e360 principal evaluation succeeds for identity 0 -[9f8 01-05 02:51:06.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e360 gate 1515120666965932800 evaluation succeeds -[9f9 01-05 02:51:06.96 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 -[9fa 01-05 02:51:06.96 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 -[9fb 01-05 02:51:06.96 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 -[9fc 01-05 02:51:06.97 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 -[9fd 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[9fe 01-05 02:51:06.97 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 -[9ff 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b64320) start: > stop: > from 172.18.0.7:47282 -[a00 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a01 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26078] -[a02 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34225], Going to peek [8] bytes -[a03 01-05 02:51:06.97 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]} -[a04 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[a05 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b64320) for 172.18.0.7:47282 -[a06 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47282 for (0xc420b64320) -[a08 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a09 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a0a 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a0b 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a07 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47282 -[a0c 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47282 -[a0d 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47282: rpc error: code = Canceled desc = context canceled -[a0e 01-05 02:51:06.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a0f 01-05 02:51:07.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a10 01-05 02:51:07.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47284 -[a11 01-05 02:51:07.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47284 -[a12 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a13 01-05 02:51:07.14 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 -[a14 01-05 02:51:07.14 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 == -[a15 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a16 01-05 02:51:07.14 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 == -[a17 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3a8 gate 1515120667142678300 evaluation starts -[a18 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 signed by 0 principal evaluation starts (used [false]) -[a19 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a1a 01-05 02:51:07.14 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 -[a1b 01-05 02:51:07.14 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 -[a1c 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 principal matched by identity 0 -[a1d 01-05 02:51:07.14 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 21 a1 ab 53 1a c0 37 13 ed 25 f8 c9 0c bd ee 5a |!..S..7..%.....Z| -00000010 29 dc 34 62 47 7e aa 61 86 12 61 7b 87 8b 7c 3c |).4bG~.a..a{..|<| -[a1e 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8f ce f7 c5 78 c5 4e 59 b0 4c 16 |0E.!.....x.NY.L.| -00000010 a1 6f 25 84 1b c4 83 3c 39 93 3f 6f d9 bb e4 98 |.o%....<9.?o....| -00000020 9a f1 dd 82 e7 02 20 1d af 91 d6 d7 30 17 e8 54 |...... .....0..T| -00000030 97 f8 64 55 de be a0 90 41 6e 02 ae d2 fe a3 77 |..dU....An.....w| -00000040 25 30 af 12 1d 5e 82 |%0...^.| -[a1f 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3a8 principal evaluation succeeds for identity 0 -[a20 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3a8 gate 1515120667142678300 evaluation succeeds -[a21 01-05 02:51:07.14 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 -[a22 01-05 02:51:07.14 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 -[a23 01-05 02:51:07.14 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 -[a24 01-05 02:51:07.14 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 -[a25 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a26 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a27 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b64c60) start: > stop: > from 172.18.0.7:47284 -[a28 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a29 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40093] -[a2a 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20210], Going to peek [8] bytes -[a2b 01-05 02:51:07.14 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]} -[a2c 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5317] read from file [0] -[a2d 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b64c60) for 172.18.0.7:47284 -[a2e 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47284 for (0xc420b64c60) -[a2f 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47284 -[a31 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47284 -[a30 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a32 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a33 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a34 01-05 02:51:07.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a35 01-05 02:51:07.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47284: rpc error: code = Canceled desc = context canceled -[a36 01-05 02:51:07.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a37 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a38 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47286 -[a39 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47286 -[a3a 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a3b 01-05 02:51:07.28 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 -[a3c 01-05 02:51:07.28 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 == -[a3d 01-05 02:51:07.28 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 -[a3e 01-05 02:51:07.28 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 == -[a3f 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386e0 gate 1515120667288876500 evaluation starts -[a40 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 signed by 0 principal evaluation starts (used [false]) -[a41 01-05 02:51:07.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a42 01-05 02:51:07.28 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 -[a43 01-05 02:51:07.28 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 -[a44 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 principal matched by identity 0 -[a45 01-05 02:51:07.29 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 a7 32 a8 e3 ce 23 9f 14 6b a7 0f a7 da f8 3b e3 |.2...#..k.....;.| -00000010 a7 dc c3 c2 fd 3c ac 1a 3c 34 6e 34 75 1f 1a f4 |.....<..<4n4u...| -[a46 01-05 02:51:07.29 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 fa a8 df d7 97 ed a7 e1 2b cf 9d |0E.!.........+..| -00000010 f5 5c 04 bb d6 60 c9 20 ac 0e ae 0a 1d 2a 3d 64 |.\...`. .....*=d| -00000020 91 99 75 01 ba 02 20 30 76 c5 ec 84 9c ad af 46 |..u... 0v......F| -00000030 79 ef 39 14 8a 73 c5 66 24 1c 4a 41 35 fc e7 83 |y.9..s.f$.JA5...| -00000040 f7 0b dd 94 a2 06 14 |.......| -[a47 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201386e0 principal evaluation succeeds for identity 0 -[a48 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201386e0 gate 1515120667288876500 evaluation succeeds -[a49 01-05 02:51:07.29 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 -[a4a 01-05 02:51:07.29 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 -[a4b 01-05 02:51:07.29 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 -[a4c 01-05 02:51:07.29 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 -[a4d 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a4e 01-05 02:51:07.29 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 -[a4f 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42023a1c0) start: > stop: > from 172.18.0.7:47286 -[a50 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a51 01-05 02:51:07.29 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] -[a52 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14891], Going to peek [8] bytes -[a53 01-05 02:51:07.29 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]} -[a54 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5323] read from file [0] -[a55 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42023a1c0) for 172.18.0.7:47286 -[a56 01-05 02:51:07.29 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:47286 for (0xc42023a1c0) -[a58 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a59 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a5a 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a5b 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a57 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47286 -[a5c 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47286 -[a5d 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47286: rpc error: code = Canceled desc = context canceled -[a5e 01-05 02:51:07.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a5f 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a60 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47288 -[a61 01-05 02:51:07.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.7:47288 -[a62 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a63 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a64 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a65 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a66 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a67 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138738 gate 1515120667508069000 evaluation starts -[a68 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 signed by 0 principal evaluation starts (used [false]) -[a69 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a6a 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[a6b 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[a6c 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 principal matched by identity 0 -[a6d 01-05 02:51:07.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 5a 7d da 0f 8c 3a bd 4f b2 90 2f c7 b8 d2 76 36 |Z}...:.O../...v6| -00000010 62 e3 33 8a f9 9f 66 45 53 98 5e 65 fa b7 6a 9f |b.3...fES.^e..j.| -[a6e 01-05 02:51:07.51 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 2a 52 7d 3f b8 97 71 2a 38 b1 1b 4c |0D. *R}?..q*8..L| -00000010 c2 16 0b 19 3d 97 2e 27 98 72 d2 0d 11 73 67 03 |....=..'.r...sg.| -00000020 c4 9e ae 3b 02 20 47 f3 3d f5 52 b2 4e 1f 19 35 |...;. G.=.R.N..5| -00000030 dc 4c 90 63 4f 7d 3b a7 d4 2c 88 5d c1 a8 62 7d |.L.cO};..,.]..b}| -00000040 ed f3 09 22 79 77 |..."yw| -[a6f 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138738 principal evaluation succeeds for identity 0 -[a70 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138738 gate 1515120667508069000 evaluation succeeds -[a71 01-05 02:51:07.51 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 -[a72 01-05 02:51:07.51 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 -[a73 01-05 02:51:07.51 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 -[a74 01-05 02:51:07.51 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 -[a75 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a76 01-05 02:51:07.51 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 -[a77 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42023afa0) start: > stop: > from 172.18.0.7:47288 -[a78 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a79 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50737] -[a7a 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9566], Going to peek [8] bytes -[a7b 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4779], placementInfo={fileNum=[0], startOffset=[50737], bytesOffset=[50739]} -[a7c 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4779] read from file [0] -[a7d 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42023afa0) for 172.18.0.7:47288 -[a7e 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47288 for (0xc42023afa0) -[a7f 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47288 -[a81 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a82 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a80 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47288 -[a83 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a84 01-05 02:51:07.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a85 01-05 02:51:07.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47288: rpc error: code = Canceled desc = context canceled -[a86 01-05 02:51:07.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a87 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a88 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47290 -[a89 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47290 -[a8a 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a8b 01-05 02:51:07.69 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 -[a8c 01-05 02:51:07.69 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 == -[a8d 01-05 02:51:07.69 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 -[a8e 01-05 02:51:07.69 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 == -[a8f 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e400 gate 1515120667699009400 evaluation starts -[a90 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 signed by 0 principal evaluation starts (used [false]) -[a91 01-05 02:51:07.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a92 01-05 02:51:07.69 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 -[a93 01-05 02:51:07.69 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 -[a94 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 principal matched by identity 0 -[a95 01-05 02:51:07.70 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 1b fa 77 eb 1f e2 54 fb 67 36 2a f6 e2 ae 64 29 |..w...T.g6*...d)| -00000010 13 a2 64 4f 7e a6 79 2c 95 8a e9 96 ea 45 63 fa |..dO~.y,.....Ec.| -[a96 01-05 02:51:07.70 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 22 fd d4 8f 5a 91 c6 01 10 5e a4 c6 |0D. "...Z....^..| -00000010 c5 dc ea a6 f4 f7 1b 53 7b 20 77 bc 7d 5c 50 08 |.......S{ w.}\P.| -00000020 92 77 09 4d 02 20 74 d9 23 0a 94 66 83 d4 fa 11 |.w.M. t.#..f....| -00000030 0c 15 2e 92 69 48 0f 13 8d 14 f9 52 6e 3b d5 51 |....iH.....Rn;.Q| -00000040 26 ae 41 0a c4 99 |&.A...| -[a97 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e400 principal evaluation succeeds for identity 0 -[a98 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e400 gate 1515120667699009400 evaluation succeeds -[a99 01-05 02:51:07.70 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 -[a9a 01-05 02:51:07.70 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 -[a9b 01-05 02:51:07.70 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 -[a9c 01-05 02:51:07.70 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 -[a9d 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a9e 01-05 02:51:07.70 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 -[a9f 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b65fa0) start: > stop: > from 172.18.0.7:47290 -[aa0 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[aa1 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55518] -[aa2 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes -[aa3 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[55518], bytesOffset=[55520]} -[aa4 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] -[aa5 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b65fa0) for 172.18.0.7:47290 -[aa6 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:47290 for (0xc420b65fa0) -[aa7 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47290 -[aa8 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47290 -[aa9 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[aaa 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[aab 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[aac 01-05 02:51:07.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[aad 01-05 02:51:07.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47290: rpc error: code = Canceled desc = context canceled -[aae 01-05 02:51:07.71 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[aaf 01-05 02:51:07.92 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[ab0 01-05 02:51:07.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:47292 -[ab1 01-05 02:51:07.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:47292 -[ab2 01-05 02:51:07.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 == -[ab3 01-05 02:51:07.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 -[ab4 01-05 02:51:07.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 == -[ab5 01-05 02:51:07.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 -[ab6 01-05 02:51:07.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 == -[ab7 01-05 02:51:07.92 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 -[ab8 01-05 02:51:07.92 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3846,365 +3973,400 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[ab9 01-05 02:51:07.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 0xc420138790 gate 1515120667928409100 evaluation starts -[aba 01-05 02:51:07.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 0xc420138790 signed by 0 principal evaluation starts (used [false]) -[abb 01-05 02:51:07.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 0xc420138790 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[abc 01-05 02:51:07.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 -[abd 01-05 02:51:07.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 -[abe 01-05 02:51:07.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 0xc420138790 principal matched by identity 0 -[abf 01-05 02:51:07.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 7e 3a 81 5d 80 a3 1d 11 f4 de af c6 ae fd 6b 5f |~:.]..........k_| -00000010 22 7d a6 6c 10 ff e5 3b 59 e6 82 a2 b4 82 52 56 |"}.l...;Y.....RV| -[ac0 01-05 02:51:07.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 44 02 20 09 2a 55 e6 c3 39 4a 57 0d 84 3c 89 |0D. .*U..9JW..<.| -00000010 2f c7 47 93 77 fe be 14 84 d0 4c 7b 02 45 57 42 |/.G.w.....L{.EWB| -00000020 24 e6 62 9a 02 20 4f f9 d5 e8 78 27 aa 12 56 60 |$.b.. O...x'..V`| -00000030 3a 8f 27 cc a2 c5 f0 86 74 6b a4 e2 63 6e da 6b |:.'.....tk..cn.k| -00000040 93 e8 0e b1 4a a7 |....J.| -[ac1 01-05 02:51:07.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 0xc420138790 principal evaluation succeeds for identity 0 -[ac2 01-05 02:51:07.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 0xc420138790 gate 1515120667928409100 evaluation succeeds -[ac3 01-05 02:51:07.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 -[ac4 01-05 02:51:07.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 -[ac5 01-05 02:51:07.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 -[ac6 01-05 02:51:07.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 -[ac7 01-05 02:51:07.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 -[ac8 01-05 02:51:07.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 -[ac9 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4202e6b00) start: > stop: > from 172.18.0.7:47292 -[aca 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[acb 01-05 02:51:07.93 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] -[acc 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14861], Going to peek [8] bytes -[acd 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14859], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[ace 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14859] read from file [0] -[acf 01-05 02:51:07.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4202e6b00) for 172.18.0.7:47292 -[ad0 01-05 02:51:07.94 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:47292 for (0xc4202e6b00) -[ad1 01-05 02:51:07.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47292 -[ad2 01-05 02:51:07.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:47292 -[ad3 01-05 02:51:07.94 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.6:7050->172.18.0.7:47292: read: connection reset by peer -[ad4 01-05 02:51:07.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47292: rpc error: code = Canceled desc = context canceled -[ad5 01-05 02:51:07.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[ad6 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[ad7 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47294 -[ad8 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47294 -[ad9 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[ada 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[adb 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[adc 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[add 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[ade 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1515120668217551000 evaluation starts -[adf 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) -[ae0 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ae1 01-05 02:51:08.21 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 -[ae2 01-05 02:51:08.21 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 -[ae3 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 -[ae4 01-05 02:51:08.21 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 83 79 c0 0b 20 9b 53 29 b5 63 27 46 2b 89 6f 26 |.y.. .S).c'F+.o&| -00000010 61 af 72 ee 54 37 4f 48 ee 5e 2c 08 98 0c d0 22 |a.r.T7OH.^,...."| -[ae5 01-05 02:51:08.21 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 95 d7 f7 7c 23 0c 7b ec 21 9d 4d |0E.!....|#.{.!.M| -00000010 94 a7 e5 23 02 e7 73 92 aa cf cb 4c 95 8f cd 34 |...#..s....L...4| -00000020 21 0a 1c 58 4d 02 20 35 1e ae 5d ef 7c 8b b9 48 |!..XM. 5..].|..H| -00000030 00 b8 19 00 ec c9 b5 ba 8b 1d 90 98 41 ac a1 3a |............A..:| -00000040 17 3a 90 76 79 a4 e8 |.:.vy..| -[ae6 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 -[ae7 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1515120668217551000 evaluation succeeds -[ae8 01-05 02:51:08.21 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 -[ae9 01-05 02:51:08.21 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 -[aea 01-05 02:51:08.21 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 -[aeb 01-05 02:51:08.21 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 -[aec 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[aed 01-05 02:51:08.21 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 -[aee 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420b642a0) start: > stop: > from 172.18.0.7:47294 -[aef 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[af0 01-05 02:51:08.21 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] -[af1 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14861], Going to peek [8] bytes -[af2 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14859], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[af3 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14859] read from file [0] -[af4 01-05 02:51:08.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420b642a0) for 172.18.0.7:47294 -[af5 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:47294 for (0xc420b642a0) -[af6 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47294 -[af7 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47294 -[af8 01-05 02:51:08.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 == -[af9 01-05 02:51:08.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 -[afa 01-05 02:51:08.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/Orderer/Readers == -[afb 01-05 02:51:08.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 -[afc 01-05 02:51:08.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/Orderer/OrdererOrg/Readers == -[afd 01-05 02:51:08.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 0xc420138478 gate 1515120668224600900 evaluation starts -[afe 01-05 02:51:08.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 0xc420138478 signed by 0 principal evaluation starts (used [false]) -[aff 01-05 02:51:08.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 0xc420138478 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b00 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[b01 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[b02 01-05 02:51:08.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 0xc420138478 principal matched by identity 0 -[b03 01-05 02:51:08.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 45 81 f8 d0 2e 9d 2f 91 58 e9 6f b3 2e bd 8a 58 |E...../.X.o....X| -00000010 1e ee 9a 4c 50 61 c3 ce 59 6b 45 73 37 59 df 7e |...LPa..YkEs7Y.~| -[b04 01-05 02:51:08.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 24 84 62 b0 79 84 75 d2 90 bc a9 ad |0D. $.b.y.u.....| -00000010 f5 39 84 74 4c 33 19 be 1d 3f f8 78 67 2b 82 a2 |.9.tL3...?.xg+..| -00000020 41 b1 7c c1 02 20 61 8a 05 2e 69 49 54 f9 9b ef |A.|.. a...iIT...| -00000030 87 74 44 43 16 1c f2 34 bb a2 ce a2 62 c2 92 21 |.tDC...4....b..!| -00000040 c8 7a 98 9d a3 15 |.z....| -[b05 01-05 02:51:08.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 0xc420138478 principal evaluation succeeds for identity 0 -[b06 01-05 02:51:08.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 0xc420138478 gate 1515120668224600900 evaluation succeeds -[b07 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[b08 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[b09 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[b0a 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[b0b 01-05 02:51:08.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 -[b0c 01-05 02:51:08.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 -[b0d 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420513340) start: > stop: > from 172.18.0.7:47294 -[b0e 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b0f 01-05 02:51:08.22 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] -[b10 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24015], Going to peek [8] bytes -[b11 01-05 02:51:08.22 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]} -[b12 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[b13 01-05 02:51:08.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420513340) for 172.18.0.7:47294 -[b14 01-05 02:51:08.23 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:47294 for (0xc420513340) -[b15 01-05 02:51:08.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47294 -[b16 01-05 02:51:08.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47294 -[b17 01-05 02:51:08.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47294: rpc error: code = Canceled desc = context canceled -[b18 01-05 02:51:08.24 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b19 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b1a 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47296 -[b1b 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47296 -[b1c 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b1d 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b1e 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b1f 01-05 02:51:08.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b20 01-05 02:51:08.38 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 == -[b21 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e150 gate 1515120668380789800 evaluation starts -[b22 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 signed by 0 principal evaluation starts (used [false]) -[b23 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b24 01-05 02:51:08.38 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 -[b25 01-05 02:51:08.38 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 -[b26 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 principal matched by identity 0 -[b27 01-05 02:51:08.38 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 22 c7 38 e9 16 12 4a f2 dc 6b b6 07 77 c8 d4 8c |".8...J..k..w...| -00000010 ed 7d 1f d1 aa ab 99 7d 9b ea 3f 69 e1 61 74 1b |.}.....}..?i.at.| -[b28 01-05 02:51:08.38 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 ad 69 41 35 8a 81 39 1c 05 94 ba |0E.!..iA5..9....| -00000010 da 3f 79 f3 ad f6 a5 d9 d4 02 7d 85 a7 ed 76 da |.?y.......}...v.| -00000020 4e 42 6e 85 9b 02 20 56 63 d6 03 0e d1 15 5c d9 |NBn... Vc.....\.| -00000030 73 39 f2 ba 50 c4 0a bf 0a 91 2d b4 0d 03 38 35 |s9..P.....-...85| -00000040 86 f7 6c 49 7b d6 68 |..lI{.h| -[b29 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e150 principal evaluation succeeds for identity 0 -[b2a 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e150 gate 1515120668380789800 evaluation succeeds -[b2b 01-05 02:51:08.38 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 -[b2c 01-05 02:51:08.38 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 -[b2d 01-05 02:51:08.38 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 -[b2e 01-05 02:51:08.38 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 -[b2f 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b30 01-05 02:51:08.38 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 -[b31 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420b64cc0) start: > stop: > from 172.18.0.7:47296 -[b32 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b33 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[b34 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24015], Going to peek [8] bytes -[b35 01-05 02:51:08.38 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]} -[b36 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[b37 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420b64cc0) for 172.18.0.7:47296 -[b38 01-05 02:51:08.38 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:47296 for (0xc420b64cc0) -[b39 01-05 02:51:08.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47296 -[b3a 01-05 02:51:08.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:47296 -[b3b 01-05 02:51:08.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47296: rpc error: code = Canceled desc = context canceled -[b3c 01-05 02:51:08.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b3d 01-05 02:51:08.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b3e 01-05 02:51:08.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47298 -[b3f 01-05 02:51:08.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47298 -[b40 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b41 01-05 02:51:08.69 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 -[b42 01-05 02:51:08.69 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 == -[b43 01-05 02:51:08.69 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 -[b44 01-05 02:51:08.69 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 == -[b45 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385d8 gate 1515120668693995000 evaluation starts -[b46 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 signed by 0 principal evaluation starts (used [false]) -[b47 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b48 01-05 02:51:08.69 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 -[b49 01-05 02:51:08.69 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 -[b4a 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 principal matched by identity 0 -[b4b 01-05 02:51:08.69 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 64 76 ea b5 36 d5 59 64 57 4d 41 41 38 51 de |.dv..6.YdWMAA8Q.| -00000010 83 cc de f9 e1 c5 8e 7c f5 74 08 81 82 90 cb 10 |.......|.t......| -[b4c 01-05 02:51:08.69 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 6b 43 b5 79 1a 08 38 dc 3a 73 d4 7b |0D. kC.y..8.:s.{| -00000010 e3 f4 69 fa e9 86 3f 97 1c e1 ad 37 5c 6d 59 c6 |..i...?....7\mY.| -00000020 eb 36 6f 33 02 20 48 42 ac e0 2c 06 ff b2 a4 17 |.6o3. HB..,.....| -00000030 e3 c4 c1 ae 99 bd 76 70 60 d2 1d 41 5a dc d4 2b |......vp`..AZ..+| -00000040 a2 8a 13 56 d3 92 |...V..| -[b4d 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201385d8 principal evaluation succeeds for identity 0 -[b4e 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201385d8 gate 1515120668693995000 evaluation succeeds -[b4f 01-05 02:51:08.69 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 -[b50 01-05 02:51:08.69 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 -[b51 01-05 02:51:08.69 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 -[b52 01-05 02:51:08.69 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 -[b53 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b54 01-05 02:51:08.69 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 -[b55 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420b54140) start: > stop: > from 172.18.0.7:47298 -[b56 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b57 01-05 02:51:08.69 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] -[b58 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14861], Going to peek [8] bytes -[b59 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14859], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[b5a 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14859] read from file [0] -[b5b 01-05 02:51:08.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420b54140) for 172.18.0.7:47298 -[b5c 01-05 02:51:08.70 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:47298 for (0xc420b54140) -[b5d 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47298 -[b5e 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47298 -[b5f 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47298: rpc error: code = Canceled desc = context canceled -[b60 01-05 02:51:08.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b61 01-05 02:51:14.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b62 01-05 02:51:14.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:47310 -[b63 01-05 02:51:14.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:47310 -[b64 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[b65 01-05 02:51:14.74 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:47312 -[b66 01-05 02:51:14.74 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:47312 -[b67 01-05 02:51:14.74 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 -[b68 01-05 02:51:14.74 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 == -[b69 01-05 02:51:14.74 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 -[b6a 01-05 02:51:14.74 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 == -[b6b 01-05 02:51:14.74 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 -[b6c 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[b6d 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1515120674743225600 evaluation starts -[b6e 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -[b6f 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b70 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[b71 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation fails -[b72 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1515120674743225600 evaluation fails -[b73 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[b74 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[b75 01-05 02:51:14.74 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 ] -[b76 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[b77 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[b78 01-05 02:51:14.74 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 == -[b79 01-05 02:51:14.74 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 -[b7a 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[b7b 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e268 gate 1515120674744781400 evaluation starts -[b7c 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 signed by 0 principal evaluation starts (used [false]) -[b7d 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b7e 01-05 02:51:14.74 UTC] [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 -[b7f 01-05 02:51:14.74 UTC] [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 -[b80 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 principal matched by identity 0 -[b81 01-05 02:51:14.74 UTC] [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 0c 47 69 2e 34 8d aa 9c 95 9a 1f fa 96 46 80 18 |.Gi.4........F..| -00000010 40 07 f2 a5 9a 52 05 a0 32 e8 5c 11 47 f9 36 2f |@....R..2.\.G.6/| -[b82 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 63 db b3 16 fd eb 40 c2 fc c8 ac b7 |0D. c.....@.....| -00000010 d1 12 69 52 d4 b6 ee f6 93 48 c5 56 c3 04 ba d7 |..iR.....H.V....| -00000020 7a 7c 2b 9b 02 20 78 6d 66 b3 69 2f 85 83 f9 4b |z|+.. xmf.i/...K| -00000030 60 96 8a 02 2f 84 bc 45 4f 96 e2 c9 68 81 c6 88 |`.../..EO...h...| -00000040 41 a9 52 62 1c de |A.Rb..| -[b83 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e268 principal evaluation succeeds for identity 0 -[b84 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e268 gate 1515120674744781400 evaluation succeeds -[b85 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[b86 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[b87 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[b88 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[b89 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[b8a 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[b8b 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[b8c 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[b8d 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[b8e 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[b8f 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[b90 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[b91 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[b92 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[b93 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[b94 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[b95 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[b96 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[b97 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[b98 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[b99 01-05 02:51:14.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[b9a 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 -[b9b 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 -[b9c 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 -[b9d 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 -[b9e 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 -[b9f 01-05 02:51:14.75 UTC] [github.com/hyperledger/fabric/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 -[ba0 01-05 02:51:14.75 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 -[ba1 01-05 02:51:14.75 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 -[ba2 01-05 02:51:14.75 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 -[ba3 01-05 02:51:14.75 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 -[ba4 01-05 02:51:14.75 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 -[ba5 01-05 02:51:14.75 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 -[ba6 01-05 02:51:14.75 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 [] -[ba7 01-05 02:51:14.75 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 -[ba8 01-05 02:51:14.75 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 -[ba9 01-05 02:51:14.75 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] -[baa 01-05 02:51:14.75 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 -[bab 01-05 02:51:14.75 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 -[bac 01-05 02:51:14.75 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 [] -[bad 01-05 02:51:14.75 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 -[bae 01-05 02:51:14.75 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 -[baf 01-05 02:51:14.75 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 == -[bb0 01-05 02:51:14.75 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 -[bb1 01-05 02:51:14.75 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 == -[bb2 01-05 02:51:14.75 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 -[bb3 01-05 02:51:14.75 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 0xc420a5c500 gate 1515120674756876500 evaluation starts -[bb4 01-05 02:51:14.75 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 0xc420a5c500 signed by 0 principal evaluation starts (used [false false false]) -[bb5 01-05 02:51:14.75 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 0xc420a5c500 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bb6 01-05 02:51:14.75 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 -[bb7 01-05 02:51:14.75 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 0xc420a5c500 principal matched by identity 0 -[bb8 01-05 02:51:14.75 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 c7 89 8f 50 b9 97 18 31 de 5e d2 a8 b6 9c 76 24 |...P...1.^....v$| -00000010 b9 31 e3 22 75 ac 77 13 15 ab 6f 3c b8 13 f0 d7 |.1."u.w...o<....| -[bb9 01-05 02:51:14.75 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 05 03 cd 7b 4f 4a cc dc ce 69 12 a2 |0D. ...{OJ...i..| -00000010 a9 45 34 24 4d ad 24 d9 c3 a5 80 9b 2b 5c 73 0e |.E4$M.$.....+\s.| -00000020 9b 19 46 ad 02 20 4a 3b e4 00 87 21 bb 68 97 52 |..F.. J;...!.h.R| -00000030 1f fe 45 89 9f 45 c4 cd 9c d3 00 00 45 56 5c 25 |..E..E......EV\%| -00000040 fb 83 24 be 13 33 |..$..3| -[bba 01-05 02:51:14.75 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 0xc420a5c500 principal evaluation succeeds for identity 0 -[bbb 01-05 02:51:14.75 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 0xc420a5c500 gate 1515120674756876500 evaluation succeeds -[bbc 01-05 02:51:14.76 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 -[bbd 01-05 02:51:14.76 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 -[bbe 01-05 02:51:14.76 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 == -[bbf 01-05 02:51:14.76 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 -[bc0 01-05 02:51:14.76 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 0xc420a5c8e0 gate 1515120674761028800 evaluation starts -[bc1 01-05 02:51:14.76 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 0xc420a5c8e0 signed by 0 principal evaluation starts (used [false false false]) -[bc2 01-05 02:51:14.76 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 0xc420a5c8e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bc3 01-05 02:51:14.76 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 0xc420a5c8e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[bc4 01-05 02:51:14.76 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 0xc420a5c8e0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bc5 01-05 02:51:14.76 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 -[bc6 01-05 02:51:14.76 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 0xc420a5c8e0 principal matched by identity 1 -[bc7 01-05 02:51:14.76 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 7a 3c f4 20 e4 e5 5c 8c 5c c7 19 83 e4 54 b2 d9 |z<. ..\.\....T..| -00000010 5a c8 7c 64 db 7f 6a c7 6b 02 35 0b 34 43 20 f1 |Z.|d..j.k.5.4C .| -[bc8 01-05 02:51:14.76 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 ec 95 8d 3d ef 79 4b 4d d9 d9 a5 |0E.!....=.yKM...| -00000010 86 b2 71 be 46 70 ef 98 17 ad 7a 8c 8f f8 03 ca |..q.Fp....z.....| -00000020 3c f1 36 bd cc 02 20 73 85 10 01 9b 12 1c b5 6f |<.6... s.......o| -00000030 5f 70 87 6d a8 7d 65 90 c3 2d 22 b5 17 69 a6 7f |_p.m.}e..-"..i..| -00000040 98 f4 21 b5 54 f5 56 |..!.T.V| -[bc9 01-05 02:51:14.76 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 0xc420a5c8e0 principal evaluation succeeds for identity 1 -[bca 01-05 02:51:14.76 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 0xc420a5c8e0 gate 1515120674761028800 evaluation succeeds -[bcb 01-05 02:51:14.76 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 -[bcc 01-05 02:51:14.76 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 -[bcd 01-05 02:51:14.76 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 -[bce 01-05 02:51:14.76 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 -[bcf 01-05 02:51:14.76 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 -[bd0 01-05 02:51:14.76 UTC] [github.com/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" -[bd1 01-05 02:51:14.76 UTC] [github.com/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" -[bd2 01-05 02:51:14.76 UTC] [github.com/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" -[bd3 01-05 02:51:14.76 UTC] [github.com/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" -[bd4 01-05 02:51:14.76 UTC] [github.com/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" -[bd5 01-05 02:51:14.76 UTC] [github.com/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" -[bd6 01-05 02:51:14.76 UTC] [github.com/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" -[bd7 01-05 02:51:14.76 UTC] [github.com/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" -[bd8 01-05 02:51:14.76 UTC] [github.com/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" -[bd9 01-05 02:51:14.76 UTC] [github.com/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" -[bda 01-05 02:51:14.76 UTC] [github.com/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" -[bdb 01-05 02:51:14.76 UTC] [github.com/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" -[bdc 01-05 02:51:14.76 UTC] [github.com/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" -[bdd 01-05 02:51:14.76 UTC] [github.com/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" -[bde 01-05 02:51:14.76 UTC] [github.com/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" -[bdf 01-05 02:51:14.76 UTC] [github.com/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" -[be0 01-05 02:51:14.76 UTC] [github.com/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 -[be1 01-05 02:51:14.76 UTC] [github.com/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 -[be2 01-05 02:51:14.76 UTC] [github.com/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 -[be3 01-05 02:51:14.76 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" -[be4 01-05 02:51:14.76 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" -[be5 01-05 02:51:14.76 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" -[be6 01-05 02:51:14.76 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 -[be7 01-05 02:51:14.76 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 -[be8 01-05 02:51:14.76 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 -[be9 01-05 02:51:14.76 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 -[bea 01-05 02:51:14.76 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 -[beb 01-05 02:51:14.76 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 -[bec 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[bed 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[bee 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[bef 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[bf0 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[bf1 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bf2 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[bf3 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[bf4 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[bf5 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[bf6 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[bf7 01-05 02:51:14.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- +MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn +KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +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----- +MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx +jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +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----- MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4219,7 +4381,7 @@ Z/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhALjGgtdzvE5SEcly HBx7LrUheoJ45F5aiv+NjCAJ2zgtAiAVUcmbAFkCTogMB2fZxZiAxi7kRZB7zw9P vA2BLfriqQ== -----END CERTIFICATE----- -[bf8 01-05 02:51:14.77 UTC] [github.com/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----- +[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----- MIICGTCCAb+gAwIBAgIQXale/sJrGRyUAW7vd8yhGjAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4233,17 +4395,17 @@ mC2gqKQAZ/wA0i3sWJFocpixKICM+1YwCgYIKoZIzj0EAwIDSAAwRQIhAMCv3M0O AqH9BdvUcbTWwpN3OOpg++2DM01DV4oU2FHMAiA2Ob/JKNyva/fxRPFq29i+5ZaL R0L5Jr8878bLU6IcEA== -----END CERTIFICATE----- -[bf9 01-05 02:51:14.77 UTC] [github.com/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 -[bfa 01-05 02:51:14.77 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 -[bfb 01-05 02:51:14.77 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 -[bfc 01-05 02:51:14.77 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 -[bfd 01-05 02:51:14.77 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 -[bfe 01-05 02:51:14.77 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 -[bff 01-05 02:51:14.77 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 -[c00 01-05 02:51:14.77 UTC] [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 -[c01 01-05 02:51:14.77 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 -[c02 01-05 02:51:14.77 UTC] [github.com/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 -[c03 01-05 02:51:14.77 UTC] [github.com/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----- +[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----- MIICQzCCAemgAwIBAgIQNtevAqhZ+j/ZznkE7+pX+zAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4258,7 +4420,7 @@ OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD nJqgrP2wQg== -----END CERTIFICATE----- -[c04 01-05 02:51:14.77 UTC] [github.com/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----- +[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----- MIICGjCCAcCgAwIBAgIRAM/WWelvhhWP7kuqtvS8IeAwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzMuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4272,17 +4434,17 @@ YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r hVFCfUaM7mJS8t0Pz4U= -----END CERTIFICATE----- -[c05 01-05 02:51:14.77 UTC] [github.com/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 -[c06 01-05 02:51:14.77 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 -[c07 01-05 02:51:14.77 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 -[c08 01-05 02:51:14.77 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 -[c09 01-05 02:51:14.77 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 -[c0a 01-05 02:51:14.77 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: -[c0b 01-05 02:51:14.77 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 -[c0c 01-05 02:51:14.77 UTC] [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 -[c0d 01-05 02:51:14.77 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 -[c0e 01-05 02:51:14.77 UTC] [github.com/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 -[c0f 01-05 02:51:14.77 UTC] [github.com/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----- +[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----- MIICQzCCAeqgAwIBAgIRAKEqX2HkQyR5AuTV9o2hKd4wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4297,7 +4459,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[c10 01-05 02:51:14.77 UTC] [github.com/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----- +[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----- MIICGjCCAcCgAwIBAgIRAIQTf/TyrRb5omtamhJV3MswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4311,149 +4473,108 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[c11 01-05 02:51:14.77 UTC] [github.com/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 -[c12 01-05 02:51:14.77 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 -[c13 01-05 02:51:14.77 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 -[c14 01-05 02:51:14.77 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 -[c15 01-05 02:51:14.77 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 -[c16 01-05 02:51:14.77 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 -[c17 01-05 02:51:14.77 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 -[c18 01-05 02:51:14.77 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 -[c19 01-05 02:51:14.77 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 -[c1a 01-05 02:51:14.77 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 -[c1b 01-05 02:51:14.77 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 -[c1c 01-05 02:51:14.77 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 -[c1d 01-05 02:51:14.77 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 -[c1e 01-05 02:51:14.77 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 -[c1f 01-05 02:51:14.77 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 -cGxlLmNvbTAeFw0xNzEyMjkwNjI2MzlaFw0yNzEyMjcwNjI2MzlaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARc81nvorpXJYgBa66rB+HWLuEn -KHZT3lrhb06vJ0tuRLlsaG3iRbqNt6y/q8MQanvQADQH9750EGtsA0k6z0Jyo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK -BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh -kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= ------END CERTIFICATE----- -[c20 01-05 02:51:14.77 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 -bGUuY29tMB4XDTE3MTIyOTA2MjYzOVoXDTI3MTIyNzA2MjYzOVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEvuYNlNw5NfSSHSpDlJ942UTyGr4E3X0Q9cFpgw25HB6EgNLp4+Dx -jSvSLf8wN7dAC2r/9QcSLfzN19JCUmkYiKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 -8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq -pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU ------END CERTIFICATE----- -[c21 01-05 02:51:14.77 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 -[c22 01-05 02:51:14.77 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) -[c23 01-05 02:51:14.77 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 -[c24 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[c25 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[c26 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[c27 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[c28 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[c29 01-05 02:51:14.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[c2a 01-05 02:51:14.78 UTC] [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 -[c2b 01-05 02:51:14.78 UTC] [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 -[c2c 01-05 02:51:14.78 UTC] [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 -[c2d 01-05 02:51:14.78 UTC] [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 -[c2e 01-05 02:51:14.78 UTC] [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 -[c2f 01-05 02:51:14.78 UTC] [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 -[c30 01-05 02:51:14.78 UTC] [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 -[c31 01-05 02:51:14.78 UTC] [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 -[c32 01-05 02:51:14.78 UTC] [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 -[c33 01-05 02:51:14.78 UTC] [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 -[c34 01-05 02:51:14.78 UTC] [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 -[c35 01-05 02:51:14.78 UTC] [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 -[c36 01-05 02:51:14.78 UTC] [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 -[c37 01-05 02:51:14.78 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 -[c38 01-05 02:51:14.78 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 -[c39 01-05 02:51:14.78 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 -[c3a 01-05 02:51:14.78 UTC] [github.com/hyperledger/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 -[c3b 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/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 -[c3c 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/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 -[c3d 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c3e 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[c3f 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c40 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c41 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c42 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c43 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c44 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c45 01-05 02:51:14.78 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c46 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c47 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c48 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c49 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c4a 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 -[c4b 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 -[c4c 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c4d 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c4e 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c4f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c50 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c51 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 -[c52 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c53 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c54 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c55 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c56 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c57 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/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 -[c58 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c59 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c5a 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c5b 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c5c 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[c5d 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c5e 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c5f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.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 -[c60 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c61 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c62 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c63 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c64 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c65 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c66 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c67 01-05 02:51:14.79 UTC] [github.com/hyperledger/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 -[c68 01-05 02:51:14.79 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' -[c69 01-05 02:51:14.79 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' -[c6a 01-05 02:51:14.79 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] -[c6b 01-05 02:51:14.79 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 -[c6c 01-05 02:51:14.79 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 -[c6d 01-05 02:51:14.79 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 [] -[c6e 01-05 02:51:14.79 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 -[c6f 01-05 02:51:14.79 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 -[c70 01-05 02:51:14.79 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 -[c71 01-05 02:51:14.79 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' -[c72 01-05 02:51:14.79 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' -[c73 01-05 02:51:14.79 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' -[c74 01-05 02:51:14.79 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] -[c75 01-05 02:51:14.79 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 -[c76 01-05 02:51:14.79 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 -[c77 01-05 02:51:14.79 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 [] -[c78 01-05 02:51:14.79 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 -[c79 01-05 02:51:14.79 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' -[c7a 01-05 02:51:14.79 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 -[c7b 01-05 02:51:14.79 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 -[c7c 01-05 02:51:14.79 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 -[c7d 01-05 02:51:14.79 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 -[c7e 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608A2D0BBD20522...BC454F96E2C96881C68841A952621CDE -[c7f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: FFAD0C7BFE158D9D19A9DD65F98E00B6DBD63401B593FA751E5C97C703D54B48 -[c80 01-05 02:51:14.79 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 == -[c81 01-05 02:51:14.79 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 -[c82 01-05 02:51:14.79 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 == -[c83 01-05 02:51:14.79 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 -[c84 01-05 02:51:14.79 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 == -[c85 01-05 02:51:14.79 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 -[c86 01-05 02:51:14.79 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----- +[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----- MIICDDCCAbOgAwIBAgIRAO3ox6Pl/kSvwfgOnXULAC8wCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4466,153 +4587,176 @@ MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAY V9p78ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgK5/mHrdpdjcmmHetqolXfoq3 SOEq1CNgGT1tdpK2Z3sCICB78E3yuiUpmielVxesXL8j9oDb+LK+sGai/G52Oe5X -----END CERTIFICATE----- -[c87 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138848 gate 1515120674798460600 evaluation starts -[c88 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 signed by 0 principal evaluation starts (used [false]) -[c89 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f674177494241674952414f336f7836506c2f6b53767766674f6e58554c41433877436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a304441516344516741456d334673744d794f4c42526c2b583152546b49685843747178554d6f72474f6e506c4f41554458622b777a56634a6a520a6f7942663638436e7230556d5862734c546253476836794967346c43736b7053702b3179524b4e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c71524641590a56397037385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674b352f6d48726470646a636d6d486574716f6c58666f71330a534f457131434e674754317464704b325a3373434943423738453379756955706d69656c56786573584c386a396f44622b4c4b2b734761692f4735324f6535580a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c8a 01-05 02:51:14.79 UTC] [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 -[c8b 01-05 02:51:14.79 UTC] [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 -[c8c 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 principal matched by identity 0 -[c8d 01-05 02:51:14.79 UTC] [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 ff ad 0c 7b fe 15 8d 9d 19 a9 dd 65 f9 8e 00 b6 |...{.......e....| -00000010 db d6 34 01 b5 93 fa 75 1e 5c 97 c7 03 d5 4b 48 |..4....u.\....KH| -[c8e 01-05 02:51:14.79 UTC] [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 c2 b0 08 0c 8c 1b 20 bb 1d d2 7d |0E.!....... ...}| -00000010 ac c5 71 c1 b3 01 52 4e 47 36 9d 49 b2 44 f8 9a |..q...RNG6.I.D..| -00000020 e7 eb 85 57 d6 02 20 43 b5 46 d0 03 c8 b3 a1 c1 |...W.. C.F......| -00000030 cd 94 2e 3c 37 b8 55 4e 78 4a dd c3 a7 3b 9c 08 |...<7.UNxJ...;..| -00000040 97 94 71 8e 11 60 12 |..q..`.| -[c8f 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138848 principal evaluation succeeds for identity 0 -[c90 01-05 02:51:14.79 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138848 gate 1515120674798460600 evaluation succeeds -[c91 01-05 02:51:14.79 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 -[c92 01-05 02:51:14.79 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 -[c93 01-05 02:51:14.79 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 -[c94 01-05 02:51:14.79 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 -[c95 01-05 02:51:14.79 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 -[c96 01-05 02:51:14.79 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 -[c97 01-05 02:51:14.79 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:47312 -[c98 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:47312: rpc error: code = Canceled desc = context canceled -[c99 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[c9a 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47310: rpc error: code = Canceled desc = context canceled -[c9b 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[c9c 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[c9d 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[c9e 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[c9f 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[ca0 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[ca1 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[ca2 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[ca3 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[ca4 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[ca5 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[ca6 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[ca7 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[ca8 01-05 02:51:14.80 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 -[ca9 01-05 02:51:14.80 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 -[caa 01-05 02:51:14.80 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 -[cab 01-05 02:51:14.80 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 -[cac 01-05 02:51:14.80 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-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[cae 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[caf 01-05 02:51:14.80 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-05 02:51:14.80 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-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -[cb2 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -[cb3 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[cb4 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -[cb5 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[cb6 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[cb7 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[cb8 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[cb9 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[cba 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[cbb 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[cbc 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[cbd 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[cbe 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -[cbf 01-05 02:51:14.80 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 -[cc0 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[cc1 01-05 02:51:14.80 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 -[cc2 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d74e0 gate 1515120674809570600 evaluation starts -[cc3 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 signed by 0 principal evaluation starts (used [false false false]) -[cc4 01-05 02:51:14.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[cc5 01-05 02:51:14.81 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 -[cc6 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 principal matched by identity 0 -[cc7 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c7 89 8f 50 b9 97 18 31 de 5e d2 a8 b6 9c 76 24 |...P...1.^....v$| -00000010 b9 31 e3 22 75 ac 77 13 15 ab 6f 3c b8 13 f0 d7 |.1."u.w...o<....| -[cc8 01-05 02:51:14.81 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 05 03 cd 7b 4f 4a cc dc ce 69 12 a2 |0D. ...{OJ...i..| -00000010 a9 45 34 24 4d ad 24 d9 c3 a5 80 9b 2b 5c 73 0e |.E4$M.$.....+\s.| -00000020 9b 19 46 ad 02 20 4a 3b e4 00 87 21 bb 68 97 52 |..F.. J;...!.h.R| -00000030 1f fe 45 89 9f 45 c4 cd 9c d3 00 00 45 56 5c 25 |..E..E......EV\%| -00000040 fb 83 24 be 13 33 |..$..3| -[cc9 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d74e0 principal evaluation succeeds for identity 0 -[cca 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d74e0 gate 1515120674809570600 evaluation succeeds -[ccb 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[ccc 01-05 02:51:14.81 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 -[ccd 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[cce 01-05 02:51:14.81 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 -[ccf 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d7840 gate 1515120674811658600 evaluation starts -[cd0 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 signed by 0 principal evaluation starts (used [false false false]) -[cd1 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a434341634367417749424167495241495154662f5479725262356f6d74616d684a56334d7377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d345768634e4d6a63784d6a49334d4459794e6a4d340a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142455a72686d306358527a6c785635452b4875376a464255694c3839705547350a7966726132512f596933586c517439592f54682b4b385631317a5848464f7a38345a4a5157426949374559355a54704d2f324247534a4b6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149447446384b57354e754d4a0a4e4563614b6f52634645516d68707438496673306568724f6e306252654f4c584d416f4743437147534d343942414d43413067414d45554349514465387961330a32775959594e5a4332384f3076593035414e39524357385a3461446872377257486f657141674967522f58743335556962527368725568726653432f5a7867640a6a545a393456797648684a4f6e346673686f553d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[cd2 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[cd3 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158616c652f734a72475279554157377664387968476a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6c61467730794e7a45794d6a63774e6a49324d7a6c610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a30444151634451674145344e5a684e417a4f5179497079766742735678344c37636b78762b482b44446c0a3369533461767a427773315679746359706d55514d37683747767454326338626d4e315064506a6c47425a72767047476f665378324b4e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672b5a55557663522f425956460a6d433267714b51415a2f774130693373574a466f637069784b49434d2b315977436759494b6f5a497a6a3045417749445341417752514968414d4376334d304f0a41714839426476556362545777704e334f4f70672b2b32444d30314456346f553246484d416941324f622f4a4b4e7976612f6678525046713239692b355a614c0a52304c354a7238383738624c5536496345413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[cd4 01-05 02:51:14.81 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 -[cd5 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 principal matched by identity 1 -[cd6 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 7a 3c f4 20 e4 e5 5c 8c 5c c7 19 83 e4 54 b2 d9 |z<. ..\.\....T..| -00000010 5a c8 7c 64 db 7f 6a c7 6b 02 35 0b 34 43 20 f1 |Z.|d..j.k.5.4C .| -[cd7 01-05 02:51:14.81 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 ec 95 8d 3d ef 79 4b 4d d9 d9 a5 |0E.!....=.yKM...| -00000010 86 b2 71 be 46 70 ef 98 17 ad 7a 8c 8f f8 03 ca |..q.Fp....z.....| -00000020 3c f1 36 bd cc 02 20 73 85 10 01 9b 12 1c b5 6f |<.6... s.......o| -00000030 5f 70 87 6d a8 7d 65 90 c3 2d 22 b5 17 69 a6 7f |_p.m.}e..-"..i..| -00000040 98 f4 21 b5 54 f5 56 |..!.T.V| -[cd8 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4209d7840 principal evaluation succeeds for identity 1 -[cd9 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4209d7840 gate 1515120674811658600 evaluation succeeds -[cda 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[cdb 01-05 02:51:14.81 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 -[cdc 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -[cdd 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins -[cde 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -[cdf 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -[ce0 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -[ce1 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ce2 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ce3 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[ce4 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ce5 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[ce6 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ce7 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[ce8 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ce9 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cea 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[ceb 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[cec 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ced 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cee 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cef 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[cf0 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[cf1 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[cf2 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[cf3 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[cf4 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[cf5 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cf6 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[cf7 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[cf8 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[cf9 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[cfa 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[cfb 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[cfc 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[cfd 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[cfe 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[cff 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[d00 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[d01 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[d02 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[d03 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[d04 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[d05 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d06 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[d07 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d08 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[d09 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[d0a 01-05 02:51:14.81 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----- +[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----- MIICLzCCAdagAwIBAgIRAJxsaoGKVCT71oZH4bYPU0QwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4626,7 +4770,7 @@ AQH/MCkGA1UdDgQiBCDt7jqIfPLzfkMXpnrYp2WcKWpEUBhX2nvxmWQWQjCmKzAK BggqhkjOPQQDAgNHADBEAiBVnjBxJTpUMt0oWRAOtN2Xe1UHcToie46Jmr92iLJh kAIgMXC21haRdjIf+xCflsfqU9U7MRQ30UK5YqGbE8xwuqI= -----END CERTIFICATE----- -[d0b 01-05 02:51:14.81 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----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4639,58 +4783,19 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[d0c 01-05 02:51:14.81 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 -[d0d 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[d0e 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[d0f 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[d10 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[d11 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[d12 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d13 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[d14 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[d15 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d16 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[d17 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[d18 01-05 02:51:14.81 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----- -[d19 01-05 02:51:14.81 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----- -[d1a 01-05 02:51:14.81 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 -[d1b 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[d1c 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[d1d 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[d1e 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d1f 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[d20 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[d21 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d22 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[d23 01-05 02:51:14.81 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP -[d24 01-05 02:51:14.81 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----- +[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 @@ -4705,7 +4810,7 @@ OsrT/ysPhwmVCvSXaAzXgecwCgYIKoZIzj0EAwIDSAAwRQIhAM+OJXAebbKHnvuv cymTZ/E73kBKc/J6AFv510zkWtwsAiAQzwFJwLCyxdbDGRsgzDSxuqmJhZcziRSD nJqgrP2wQg== -----END CERTIFICATE----- -[d25 01-05 02:51:14.81 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----- +[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 @@ -4719,17 +4824,17 @@ YyeiCSrMuzrK0/8rD4cJlQr0l2gM14HnMAoGCCqGSM49BAMCA0gAMEUCIQDOqqq0 cL3O/wgnI7NfB6ghFhAxLaf0q2y8FrdEE2HPCwIgI1wl0cC9MqQwHz6ZHV+TcE4r hVFCfUaM7mJS8t0Pz4U= -----END CERTIFICATE----- -[d26 01-05 02:51:14.82 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 -[d27 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[d28 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[d29 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[d2a 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d2b 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[d2c 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[d2d 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d2e 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[d2f 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[d30 01-05 02:51:14.82 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----- +[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 @@ -4744,7 +4849,7 @@ FEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0cAMEQCIAeGhZX5w5k1cmX0 WP74S5zgH6IO5qzWVADqDQoyeHH9AiAUgtDt4U9FrrrmKT0aAIyeXgFSv463tHcy oQmWQsjpiQ== -----END CERTIFICATE----- -[d31 01-05 02:51:14.82 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----- +[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 @@ -4758,134 +4863,212 @@ NEcaKoRcFEQmhpt8Ifs0ehrOn0bReOLXMAoGCCqGSM49BAMCA0gAMEUCIQDe8ya3 2wYYYNZC28O0vY05AN9RCW8Z4aDhr7rWHoeqAgIgR/Xt35UibRshrUhrfSC/Zxgd jTZ94VyvHhJOn4fshoU= -----END CERTIFICATE----- -[d32 01-05 02:51:14.82 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 -[d33 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -[d34 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -[d35 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[d36 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[d37 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[d38 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -[d39 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -[d3a 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -[d3b 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[d3c 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[d3d 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[d3e 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[d3f 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[d40 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[d41 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[d42 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[d43 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[d44 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[d45 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[d46 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[d47 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[d48 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[d49 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[d4a 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[d4b 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[d4c 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[d4d 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[d4e 01-05 02:51:14.82 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 -[d4f 01-05 02:51:14.82 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 -[d50 01-05 02:51:14.82 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 -[d51 01-05 02:51:14.82 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 -[d52 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[d53 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[d54 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[d55 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[d56 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[d57 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[d58 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[d59 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[d5a 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[d5b 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[d5c 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[d5d 01-05 02:51:14.82 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 -[d5e 01-05 02:51:14.82 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 -[d5f 01-05 02:51:14.82 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 -[d60 01-05 02:51:14.82 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 -[d61 01-05 02:51:14.82 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 -[d62 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[d63 01-05 02:51:14.82 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 -[d64 01-05 02:51:14.82 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 -[d65 01-05 02:51:14.82 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 -[d66 01-05 02:51:14.82 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 -[d67 01-05 02:51:14.82 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[d68 01-05 02:51:14.82 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 -[d69 01-05 02:51:14.82 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 -[d6a 01-05 02:51:14.82 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 -[d6b 01-05 02:51:14.82 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 -[d6c 01-05 02:51:14.83 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 -[d6d 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[d6e 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[d6f 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[d70 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[d71 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[d72 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[d73 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[d74 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[d75 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[d76 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[d77 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[d78 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[d79 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[d7a 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[d7b 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[d7c 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[d7d 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[d7e 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[d7f 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[d80 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[d81 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -[d82 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[d83 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[d84 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[d85 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[d86 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[d87 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[d88 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[d89 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[d8a 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[d8b 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[d8c 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d8d 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[d8e 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d8f 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B9BB6542663D6A8B68127B722E9F4258 -[d90 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 4C90D18B1BB0AE07037B02C34FE4EC6AF01B25D80F294FB24BF373190CFFF2F2 -[d91 01-05 02:51:14.83 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 -[d92 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[d93 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d94 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 7 -[d95 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[d96 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d97 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...B9BB6542663D6A8B68127B722E9F4258 -[d98 01-05 02:51:14.83 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EA6C85A2D32DEAE4E60CC9931B42AC63D038096B649F78978EA9BA03FABD484D -[d99 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xce, 0x93, 0x4f, 0xbd, 0x9e, 0x8f, 0x46, 0x9e, 0xe8, 0x99, 0xbc, 0xa0, 0x6c, 0x19, 0xb9, 0xe3, 0x95, 0x93, 0xe9, 0xa6, 0x5, 0xd5, 0x4b, 0x7f, 0x4e, 0x5d, 0xd1, 0x32, 0x6c, 0x50, 0x6f, 0x92} txOffsets= -txId= locPointer=offset=71, bytesLength=19402 +[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----- +MIICQzCCAemgAwIBAgIQJfd8n00O14DbuTiZ9g3rnDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEyMjkwNjI2MzhaFw0yNzEyMjcwNjI2Mzha +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +a2oN8HOaie6c4BYMuLYzDMkHi2O0IznphNn8xKliQWwkGgCjNE1JgSl+RRNBGQeA +tXPZodJB5s7nNjVULGIESaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQg+ZUUvcR/BYVFmC2gqKQA +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----- +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----- +[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 ] -[d9a 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81571], isChainEmpty=[false], lastBlockNumber=[7] -[d9b 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 -[d9c 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[d9e 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[d9d 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -[d9f 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -[da1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -[da0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -[da2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -[da3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -[da4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[da5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[da6 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[da8 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[da9 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[da7 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[daa 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[dab 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[dac 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[dad 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[dae 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[daf 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- +MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd +z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF +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----- MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4899,95 +5082,65 @@ RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk oOWGb8BDg2Tnm3LS -----END CERTIFICATE----- -[db0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[db1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515120674846685200 evaluation starts -[db2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 signed by 0 principal evaluation starts (used [false]) -[db3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[db4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[db5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal evaluation fails -[db6 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1515120674846685200 evaluation fails -[db7 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[db8 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[db9 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[dba 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120674847114200 evaluation starts -[dbb 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 signed by 0 principal evaluation starts (used [false]) -[dbc 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[dbd 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) -[dbe 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e090 principal evaluation fails -[dbf 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e090 gate 1515120674847114200 evaluation fails -[dc0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[dc1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[dc2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[dc3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1515120674847574600 evaluation starts -[dc4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 signed by 0 principal evaluation starts (used [false]) -[dc6 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749515877344371654c734b6b6239376e2f55706d534a6a54414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45794d6a6b774e6a49324d7a6861467730794e7a45794d6a63774e6a49324d7a68610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414573694a6835796d39414f7743322f57384b544a7832394a3056385039486f4b770a735273636a674861732b45736f314b32773670794b467173307930667a4976715a55724845355650466c4561503931324150645a64364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41674f30587770626b3234776b300a52786f7168467755524361476d3377682b7a5236477336665274463434746377436759494b6f5a497a6a304541774944527741775241496745714942667475460a2b6f4a416a71496d68504377554e3330505264337057546f58424d44703179724e5749434947736f78786233684f32484638433437564e446e6473424266506b0a6f4f5747623842446732546e6d334c530a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[dc7 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[dc8 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[dc5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAJBP2i5ORxPhfmxpNFp/LscwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMjI5MDYyNjM5WhcNMjcxMjI3MDYyNjM5 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABIGH8t1SKiVg0dsvJsk32FRxytW2FZQd -z/rUhTCPn37byD88vO54uGra2NJjA/6LG4gaRosuskXtKanLXRGUCcOjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIPmVFL3EfwWF -RZgtoKikAGf8ANIt7FiRaHKYsSiAjPtWMAoGCCqGSM49BAMCA0gAMEUCIQDfdS7U -V+Lyg4qZKCwsXx9hOmCKzWIP5RwOtNkFJfFkLAIgKvGJ7pq8pOEZnHovei/RJ+hB -IMM+3uC8p/M1qCSaOiQ= ------END CERTIFICATE----- -[dc9 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal matched by identity 0 -[dca 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 06 15 9a 88 99 b5 a9 f4 86 d0 1d d8 13 35 3e dd |.............5>.| -00000010 0a b4 47 09 02 81 6a 88 fd 3d 99 7b da db d3 c7 |..G...j..=.{....| -[dcb 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 97 41 cf 8b 0a 65 0c a9 ca 35 0f |0E.!..A...e...5.| -00000010 65 36 ef f7 25 2e a8 3e 0b 7b 9c d0 3c e2 4b 4f |e6..%..>.{..<.KO| -00000020 a8 75 37 49 e4 02 20 23 1b e4 e3 81 f1 cf 0b 83 |.u7I.. #........| -00000030 93 29 14 a8 10 c8 25 ed ad 9e 38 ed 30 4c c3 26 |.)....%...8.0L.&| -00000040 66 c2 c5 43 f8 06 a3 |f..C...| -[dcc 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal evaluation succeeds for identity 0 -[dcd 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1515120674847574600 evaluation succeeds -[dce 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[dcf 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[dd0 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[dd1 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[dd2 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[dd3 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[dd4 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b55f00) for 172.18.0.4:37560 -[dd5 01-05 02:51:14.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[dd6 01-05 02:51:14.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 0xc420138198 gate 1515120674854967900 evaluation starts -[dd7 01-05 02:51:14.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 0xc420138198 signed by 0 principal evaluation starts (used [false]) -[dd8 01-05 02:51:14.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 0xc420138198 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414a42503269354f52785068666d78704e46702f4c736377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5463784d6a49354d4459794e6a4d355768634e4d6a63784d6a49334d4459794e6a4d350a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142494748387431534b695667306473764a736b333246527879745732465a51640a7a2f7255685443506e33376279443838764f353475477261324e4a6a412f364c47346761526f7375736b58744b616e4c5852475543634f6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149506d56464c3345667757460a525a67746f4b696b41476638414e49743746695261484b59735369416a5074574d416f4743437147534d343942414d43413067414d45554349514466645337550a562b4c796734715a4b437773587839684f6d434b7a5749503552774f744e6b464a66466b4c4149674b76474a37707138704f455a6e486f7665692f524a2b68420a494d4d2b33754338702f4d31714353614f69513d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[dd9 01-05 02:51:14.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 -[dda 01-05 02:51:14.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 -[ddb 01-05 02:51:14.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 0xc420138198 principal matched by identity 0 -[ddc 01-05 02:51:14.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 fb 95 b2 6f 4f 60 c9 d3 96 27 d2 13 57 7a a4 13 |...oO`...'..Wz..| -00000010 6f 54 80 9c 69 49 9d 38 68 10 82 0a e3 57 cb de |oT..iI.8h....W..| -[ddd 01-05 02:51:14.86 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 7e 75 74 a7 73 f0 d3 10 07 a8 cf d9 |0D. ~ut.s.......| -00000010 bd 33 64 3d 36 47 c0 e0 0a a1 e6 96 ac 37 71 e9 |.3d=6G.......7q.| -00000020 4e d2 21 63 02 20 12 7b 95 00 67 c2 c0 f7 c7 3a |N.!c. .{..g....:| -00000030 9e 73 24 86 00 60 e3 f0 9c 98 3a 67 63 77 bc ee |.s$..`....:gcw..| -00000040 99 8d 83 c2 0e 04 |......| -[dde 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138198 principal evaluation succeeds for identity 0 -[ddf 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138198 gate 1515120674854967900 evaluation succeeds -[de0 01-05 02:51:14.86 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 -[de1 01-05 02:51:14.86 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 -[de2 01-05 02:51:14.86 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 -[de3 01-05 02:51:14.86 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 -[de4 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[de5 01-05 02:51:14.86 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 -[de6 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209edaa0) for 172.18.0.5:51548 -[de7 01-05 02:51:14.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[de8 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[de9 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47336 -[dea 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47336 -[deb 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[dec 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ded 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[dee 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[def 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[df0 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[df1 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[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----- MIICCTCCAbCgAwIBAgIQLuG1nW7dUCCOr9s66uSbUTAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5000,149 +5153,149 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg7e46iHzy835DF6Z62KdlnClqRFAYV9p7 8ZlkFkIwpiswCgYIKoZIzj0EAwIDRwAwRAIgLGvNGrpr0NouM21LH8/5BYi7TIpq pxhdCLCWu0G6TSwCID0gEZKgcaa2Z86THSSnqbrSOUyCBncIZNzg+FgbKYsU -----END CERTIFICATE----- -[df2 01-05 02:51:17.00 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138428 gate 1515120677009870300 evaluation starts -[df3 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 signed by 0 principal evaluation starts (used [false]) -[df4 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[df5 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[df6 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138428 principal evaluation fails -[df7 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138428 gate 1515120677009870300 evaluation fails -[df8 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[df9 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[dfa 01-05 02:51:17.01 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 == -[dfb 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138450 gate 1515120677011338600 evaluation starts -[dfc 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 signed by 0 principal evaluation starts (used [false]) -[dfd 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[dfe 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[dff 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138450 principal evaluation fails -[e00 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138450 gate 1515120677011338600 evaluation fails -[e01 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[e02 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[e03 01-05 02:51:17.01 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 == -[e04 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138458 gate 1515120677014049500 evaluation starts -[e05 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 signed by 0 principal evaluation starts (used [false]) -[e06 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e07 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[e08 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138458 principal evaluation fails -[e09 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138458 gate 1515120677014049500 evaluation fails -[e0a 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[e0b 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[e0c 01-05 02:51:17.01 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 Org3MSP.Readers Org1MSP.Readers ] -[e0d 01-05 02:51:17.01 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 -[e0e 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[e0f 01-05 02:51:17.01 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 == -[e10 01-05 02:51:17.01 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 -[e11 01-05 02:51:17.01 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 == -[e12 01-05 02:51:17.01 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 1515120677017802100 evaluation starts -[e13 01-05 02:51:17.01 UTC] [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]) -[e14 01-05 02:51:17.01 UTC] [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 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e15 01-05 02:51:17.01 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 -[e16 01-05 02:51:17.01 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 -[e17 01-05 02:51:17.01 UTC] [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 -[e18 01-05 02:51:17.01 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 86 6f 62 a0 d0 6d 9e 18 ab 19 a0 8b 35 81 32 36 |.ob..m......5.26| -00000010 2a 82 6e c9 c6 81 ad 70 3b 55 5e f8 01 1d 89 47 |*.n....p;U^....G| -[e19 01-05 02:51:17.02 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 8c b3 e2 56 de 89 9b 26 f1 9b 08 |0E.!....V...&...| -00000010 18 42 f1 8f c5 7b 4e ea 7b e5 f4 e7 b8 48 dc a1 |.B...{N.{....H..| -00000020 ad fe 65 2d ff 02 20 5b 3b bb cf 9e b0 c6 81 0f |..e-.. [;.......| -00000030 93 a3 1d 27 44 50 43 5c 8d 44 fe be 63 1e 9b f8 |...'DPC\.D..c...| -00000040 96 e6 c5 c1 b1 5f c0 |....._.| -[e1a 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138460 principal evaluation succeeds for identity 0 -[e1b 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138460 gate 1515120677017802100 evaluation succeeds -[e1c 01-05 02:51:17.02 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 -[e1d 01-05 02:51:17.02 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 -[e1e 01-05 02:51:17.02 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 -[e1f 01-05 02:51:17.02 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 -[e20 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[e21 01-05 02:51:17.02 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 -[e22 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a5d340) start: > stop: > from 172.18.0.7:47336 -[e23 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[e24 01-05 02:51:17.02 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=[60303] -[e25 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -[e26 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -[e27 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -[e28 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a5d340) for 172.18.0.7:47336 -[e29 01-05 02:51:17.02 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:47336 for (0xc420a5d340) -[e2b 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e2c 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e2a 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47336 -[e2d 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e2f 01-05 02:51:17.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e2e 01-05 02:51:17.02 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47336 -[e30 01-05 02:51:17.03 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47336: rpc error: code = Canceled desc = context canceled -[e31 01-05 02:51:17.03 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[e32 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[e33 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:47338 -[e34 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47338 -[e35 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[e36 01-05 02:51:17.25 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 -[e37 01-05 02:51:17.25 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 == -[e38 01-05 02:51:17.25 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 -[e39 01-05 02:51:17.25 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 == -[e3a 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384f8 gate 1515120677255715200 evaluation starts -[e3b 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 signed by 0 principal evaluation starts (used [false]) -[e3c 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e3d 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[e3e 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201384f8 principal evaluation fails -[e3f 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201384f8 gate 1515120677255715200 evaluation fails -[e40 01-05 02:51:17.25 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 -[e41 01-05 02:51:17.25 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 -[e42 01-05 02:51:17.25 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 == -[e43 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138500 gate 1515120677257770200 evaluation starts -[e44 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 signed by 0 principal evaluation starts (used [false]) -[e45 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e46 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[e47 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138500 principal evaluation fails -[e48 01-05 02:51:17.25 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138500 gate 1515120677257770200 evaluation fails -[e49 01-05 02:51:17.25 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 -[e4a 01-05 02:51:17.25 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 -[e4b 01-05 02:51:17.26 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 == -[e4c 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138510 gate 1515120677260208100 evaluation starts -[e4d 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 signed by 0 principal evaluation starts (used [false]) -[e4e 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e4f 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[e50 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138510 principal evaluation fails -[e51 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138510 gate 1515120677260208100 evaluation fails -[e52 01-05 02:51:17.26 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 -[e53 01-05 02:51:17.26 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 -[e54 01-05 02:51:17.26 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 Org3MSP.Readers Org1MSP.Readers ] -[e55 01-05 02:51:17.26 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 -[e56 01-05 02:51:17.26 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 -[e57 01-05 02:51:17.26 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 == -[e58 01-05 02:51:17.26 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 -[e59 01-05 02:51:17.26 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 == -[e5a 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515120677263649400 evaluation starts -[e5b 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 signed by 0 principal evaluation starts (used [false]) -[e5c 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514c7547316e5737645543434f72397336367553625554414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445334d5449794f5441324d6a597a4f566f58445449334d5449794e7a41324d6a597a4f566f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457675594e6c4e77354e665353485370446c4a3934325554794772344533583051396346706777323548423645674e4c70342b44780a6a5376534c6638774e3764414332722f395163534c667a4e31394a43556d6b59694b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41673765343669487a793833354446365a36324b646c6e436c7152464159563970370a385a6c6b466b497770697377436759494b6f5a497a6a30454177494452774177524149674c47764e47727072304e6f754d32314c48382f3542596937544970710a70786864434c4357753047365453774349443067455a4b67636161325a3836544853536e716272534f557943426e63495a4e7a672b4667624b5973550a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e5d 01-05 02:51:17.26 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 -[e5e 01-05 02:51:17.26 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 -[e5f 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal matched by identity 0 -[e60 01-05 02:51:17.26 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 53 4c 33 20 13 47 1e 49 9f 9b 99 fd d0 78 fa 67 |SL3 .G.I.....x.g| -00000010 ae 05 1c 91 f6 37 2f 76 68 11 7d 33 25 a5 3b a8 |.....7/vh.}3%.;.| -[e61 01-05 02:51:17.26 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 85 51 a6 0b 6d a7 cf 97 67 2a 68 |0E.!..Q..m...g*h| -00000010 2c c5 3e bb 97 f1 dc c3 97 03 da 37 47 fc d3 00 |,.>........7G...| -00000020 78 a2 c1 17 b6 02 20 71 7b 9a d5 5c 5e 66 24 79 |x..... q{..\^f$y| -00000030 50 e5 4c 5f 24 d2 2a cf d5 58 4f 4e 19 42 ee 4c |P.L_$.*..XON.B.L| -00000040 b2 58 45 26 9f 37 5d |.XE&.7]| -[e62 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420138520 principal evaluation succeeds for identity 0 -[e63 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420138520 gate 1515120677263649400 evaluation succeeds -[e64 01-05 02:51:17.26 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 -[e65 01-05 02:51:17.26 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 -[e66 01-05 02:51:17.26 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 -[e67 01-05 02:51:17.26 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 -[e68 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[e69 01-05 02:51:17.26 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 -[e6a 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4209ec740) start: > stop: > from 172.18.0.7:47338 -[e6b 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[e6c 01-05 02:51:17.26 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=[60303] -[e6d 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21268], Going to peek [8] bytes -[e6e 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21265], placementInfo={fileNum=[0], startOffset=[60303], bytesOffset=[60306]} -[e6f 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21265] read from file [0] -[e70 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4209ec740) for 172.18.0.7:47338 -[e71 01-05 02:51:17.26 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:47338 for (0xc4209ec740) -[e72 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:47338 -[e74 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:47338 -[e73 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e75 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e76 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e77 01-05 02:51:17.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e78 01-05 02:51:17.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:47338: rpc error: code = Canceled desc = context canceled -[e79 01-05 02:51:17.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[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 diff --git a/hyperledger_fabric/latest/solo/logs/dev_peer0.log b/hyperledger_fabric/latest/solo/logs/dev_peer0.log index 9ea1d39f..0e78398e 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 02:50:20.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalMSP -> DEBU Returning existing local MSP -[002 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +[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: 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 02:50:20.30 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 02:50:20.30 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 02:50:20.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -[006 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -[007 01-05 02:50:20.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -[008 01-05 02:50:20.31 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 02:50:20.31 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 02:50:20.31 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 02:50:20.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -[00c 01-05 02:50:20.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -[00d 01-05 02:50:20.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -[00e 01-05 02:50:20.33 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 02:50:20.33 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 02:50:20.33 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 02:50:20.33 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 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -[013 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -[014 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -[015 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -[016 01-05 02:50:20.34 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 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -[018 01-05 02:50:20.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -[019 01-05 02:50:20.34 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 02:50:20.34 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 -[01b 01-05 02:50:20.34 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 02:50:20.34 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 -[01d 01-05 02:50:20.34 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 02:50:20.35 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[01f 01-05 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[020 01-05 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[021 01-05 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[022 01-05 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[023 01-05 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -[024 01-05 02:50:20.36 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[025 01-05 02:50:20.36 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 02:50:20.36 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -[02b 01-05 02:50:20.38 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 02:50:20.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 -[02d 01-05 02:50:20.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 -[02e 01-05 02:50:20.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: -[02f 01-05 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[039 01-05 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 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 02:50:20.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -[040 01-05 02:50:20.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[041 01-05 02:50:20.39 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 02:50:20.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[043 01-05 02:50:20.40 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 02:50:20.40 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-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----- MIICGDCCAb+gAwIBAgIQXw4CqeLsKkb97n/UpmSJjTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -89,34 +89,34 @@ RxoqhFwURCaGm3wh+zR6Gs6fRtF44tcwCgYIKoZIzj0EAwIDRwAwRAIgEqIBftuF +oJAjqImhPCwUN30PRd3pWToXBMDp1yrNWICIGsoxxb3hO2HF8C47VNDndsBBfPk oOWGb8BDg2Tnm3LS -----END CERTIFICATE----- -[045 01-05 02:50:20.40 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 02:50:20.40 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 02:50:20.40 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 02:50:20.40 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 02:50:20.40 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 02:50:20.40 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 02:50:20.40 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 1515120620407418800 -[04c 01-05 02:50:20.40 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 02:50:20.40 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 -[04e 01-05 02:50:20.40 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 -[04f 01-05 02:50:20.40 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 -[050 01-05 02:50:20.40 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 -[051 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[052 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[053 01-05 02:50:20.41 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 02:50:20.41 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 02:50:20.41 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 02:50:20.41 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 02:50:20.41 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 02:50:20.41 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=e516fdc0-aa9a-4381-803d-e06018cda404,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[059 01-05 02:50:20.41 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 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[05b 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[05c 01-05 02:50:20.41 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 02:50:20.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] -[05e 01-05 02:50:20.41 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 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[060 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[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: 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 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -[062 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -[063 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -[064 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -[065 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[066 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[067 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -[068 01-05 02:50:20.41 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-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[06a 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[06b 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[06d 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[06e 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -[06f 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 038B407E00A0F5300D9ED26D0086ABAE15137F3883C723F841D4C88AD382B9B7 -[070 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[071 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[072 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -[073 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -[06c 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -[074 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[075 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -[076 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[077 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[078 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[079 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[07a 01-05 02:50:20.41 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 -[07b 01-05 02:50:20.41 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 -[07c 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[07d 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[07e 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[07f 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[080 01-05 02:50:20.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 cscc:1.1.0 launch seq completed -[081 01-05 02:50:20.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 -[082 01-05 02:50:20.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... -[083 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]Move state message READY -[084 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0]Fabric side Handling ChaincodeMessage of type: READY in state established -[085 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e516fdc0]Entered state ready -[086 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e516fdc0-aa9a-4381-803d-e06018cda404, channelID: -[087 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]sending state message READY -[088 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Received message READY from shim -[089 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e516fdc0]Handling ChaincodeMessage of type: READY(state:established) -[08a 01-05 02:50:20.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 -[08b 01-05 02:50:20.41 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-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[08d 01-05 02:50:20.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: cscc:1.1.0 -[08e 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e516fdc0]Inside sendExecuteMessage. Message INIT -[08f 01-05 02:50:20.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... -[090 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e516fdc0]sendExecuteMsg trigger event INIT -[091 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]Move state message INIT -[092 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[093 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[094 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]sending state message INIT -[095 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Received message INIT from shim -[096 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e516fdc0]Handling ChaincodeMessage of type: INIT(state:ready) -[097 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[098 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e516fdc0]Received INIT, initializing chaincode -[099 01-05 02:50:20.41 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[09a 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[09b 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Init get response status: 200 -[09c 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Init succeeded. Sending COMPLETED -[09d 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]Move state message COMPLETED -[09e 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e516fdc0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[09f 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e516fdc0]send state message COMPLETED -[0a0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e516fdc0]Received message COMPLETED from shim -[0a1 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0a2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e516fdc0-aa9a-4381-803d-e06018cda404]HandleMessage- COMPLETED. Notify -[0a3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e516fdc0-aa9a-4381-803d-e06018cda404, channelID: -[0a4 01-05 02:50:20.42 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 02:50:20.42 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 02:50:20.42 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=b366d7cd-6c86-42c7-8df4-1d82cf62b582,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[0a7 01-05 02:50:20.42 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 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[0a9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0aa 01-05 02:50:20.42 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 02:50:20.42 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-05 02:50:20.42 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 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0ae 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[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: 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 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -[0b0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -[0b1 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -[0b2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -[0b4 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -[0b5 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0b3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -[0b6 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0b7 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -[0b8 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0b9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0ba 01-05 02:50:20.42 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 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0bc 01-05 02:50:20.42 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 02:50:20.42 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 02:50:20.42 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 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0c1 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0c0 01-05 02:50:20.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 lscc:1.1.0 launch seq completed -[0c2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0c3 01-05 02:50:20.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 -[0c4 01-05 02:50:20.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... -[0c5 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]Move state message READY -[0c6 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd]Fabric side Handling ChaincodeMessage of type: READY in state established -[0c7 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b366d7cd]Entered state ready -[0c8 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b366d7cd-6c86-42c7-8df4-1d82cf62b582, channelID: -[0c9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]sending state message READY -[0ca 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Received message READY from shim -[0cb 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b366d7cd]Handling ChaincodeMessage of type: READY(state:established) -[0cc 01-05 02:50:20.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 -[0cd 01-05 02:50:20.42 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 02:50:20.42 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 02:50:20.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: lscc:1.1.0 -[0d0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b366d7cd]Inside sendExecuteMessage. Message INIT -[0d1 01-05 02:50:20.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... -[0d2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b366d7cd]sendExecuteMsg trigger event INIT -[0d3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]Move state message INIT -[0d4 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0d5 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0d6 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]sending state message INIT -[0d7 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Received message INIT from shim -[0d8 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b366d7cd]Handling ChaincodeMessage of type: INIT(state:ready) -[0d9 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[0da 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b366d7cd]Received INIT, initializing chaincode -[0db 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -[0dc 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Init get response status: 200 -[0dd 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Init succeeded. Sending COMPLETED -[0de 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]Move state message COMPLETED -[0df 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b366d7cd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[0e0 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b366d7cd]send state message COMPLETED -[0e1 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b366d7cd]Received message COMPLETED from shim -[0e2 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0e3 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b366d7cd-6c86-42c7-8df4-1d82cf62b582]HandleMessage- COMPLETED. Notify -[0e4 01-05 02:50:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b366d7cd-6c86-42c7-8df4-1d82cf62b582, channelID: -[0e5 01-05 02:50:20.42 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 02:50:20.42 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 02:50:20.42 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=c1001fa6-e705-419c-b3c3-b648dfe71a02,syscc=true,proposal=0x0,canname=escc:1.1.0 -[0e8 01-05 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[0ea 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0eb 01-05 02:50:20.43 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 02:50:20.43 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-05 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0ef 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[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: 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -[0f1 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -[0f2 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -[0f3 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -[0f4 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -[0f5 01-05 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -[0f7 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0f8 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -[0f9 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0fa 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0fb 01-05 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0fd 01-05 02:50:20.43 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 02:50:20.43 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 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[101 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[102 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[103 01-05 02:50:20.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 escc:1.1.0 launch seq completed -[104 01-05 02:50:20.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 -[105 01-05 02:50:20.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... -[106 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]Move state message READY -[107 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6]Fabric side Handling ChaincodeMessage of type: READY in state established -[108 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c1001fa6]Entered state ready -[109 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c1001fa6-e705-419c-b3c3-b648dfe71a02, channelID: -[10a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]sending state message READY -[10b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Received message READY from shim -[10c 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1001fa6]Handling ChaincodeMessage of type: READY(state:established) -[10d 01-05 02:50:20.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 -[10e 01-05 02:50:20.43 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 02:50:20.43 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 02:50:20.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: escc:1.1.0 -[111 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1001fa6]Inside sendExecuteMessage. Message INIT -[112 01-05 02:50:20.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... -[113 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1001fa6]sendExecuteMsg trigger event INIT -[114 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]Move state message INIT -[115 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[116 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[117 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]sending state message INIT -[118 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Received message INIT from shim -[119 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1001fa6]Handling ChaincodeMessage of type: INIT(state:ready) -[11a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[11b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c1001fa6]Received INIT, initializing chaincode -[11c 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[11d 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Init get response status: 200 -[11e 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Init succeeded. Sending COMPLETED -[11f 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]Move state message COMPLETED -[120 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1001fa6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[121 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1001fa6]send state message COMPLETED -[122 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1001fa6]Received message COMPLETED from shim -[123 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[124 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c1001fa6-e705-419c-b3c3-b648dfe71a02]HandleMessage- COMPLETED. Notify -[125 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c1001fa6-e705-419c-b3c3-b648dfe71a02, channelID: -[126 01-05 02:50:20.43 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 02:50:20.43 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 02:50:20.43 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=d3641855-cb97-406e-b551-06cf6a753472,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[129 01-05 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[12b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[12c 01-05 02:50:20.43 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 02:50:20.43 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-05 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[130 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[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: 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -[132 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -[133 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -[134 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -[135 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -[136 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[137 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -[138 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[139 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -[13a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[13b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[13c 01-05 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[13e 01-05 02:50:20.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.1.0 -[13f 01-05 02:50:20.43 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 02:50:20.43 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 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[142 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[143 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[144 01-05 02:50:20.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.1.0 launch seq completed -[145 01-05 02:50:20.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 -[146 01-05 02:50:20.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... -[147 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]Move state message READY -[148 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855]Fabric side Handling ChaincodeMessage of type: READY in state established -[149 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d3641855]Entered state ready -[14a 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d3641855-cb97-406e-b551-06cf6a753472, channelID: -[14c 01-05 02:50:20.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 -[14d 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[14e 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[14f 01-05 02:50:20.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.1.0 -[150 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3641855]Inside sendExecuteMessage. Message INIT -[151 01-05 02:50:20.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... -[152 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3641855]sendExecuteMsg trigger event INIT -[14b 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]sending state message READY -[153 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]Move state message INIT -[155 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[156 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[157 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]sending state message INIT -[154 01-05 02:50:20.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Received message READY from shim -[158 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3641855]Handling ChaincodeMessage of type: READY(state:established) -[159 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Received message INIT from shim -[15a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3641855]Handling ChaincodeMessage of type: INIT(state:ready) -[15b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[15c 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d3641855]Received INIT, initializing chaincode -[15d 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Init get response status: 200 -[15e 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Init succeeded. Sending COMPLETED -[15f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]Move state message COMPLETED -[160 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3641855]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[161 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3641855]send state message COMPLETED -[162 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3641855]Received message COMPLETED from shim -[163 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[164 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d3641855-cb97-406e-b551-06cf6a753472]HandleMessage- COMPLETED. Notify -[165 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d3641855-cb97-406e-b551-06cf6a753472, channelID: -[166 01-05 02:50:20.44 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 02:50:20.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 -[168 01-05 02:50:20.44 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=83ccafb0-273b-41e0-877a-7fa0b5747680,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[169 01-05 02:50:20.44 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 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[16b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[16c 01-05 02:50:20.44 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 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/peer.crt] -[16e 01-05 02:50:20.44 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 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[170 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[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: 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,1134 @@ 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 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -[172 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -[173 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -[174 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -[175 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -[177 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[176 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -[178 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[179 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -[17a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[17b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[17c 01-05 02:50:20.44 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 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[17e 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.1.0 -[17f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.1.0" , sending back REGISTERED -[180 01-05 02:50:20.44 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 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[183 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.1.0 launch seq completed -[184 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[185 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[186 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]Move state message READY -[187 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0]Fabric side Handling ChaincodeMessage of type: READY in state established -[188 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [83ccafb0]Entered state ready -[189 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:83ccafb0-273b-41e0-877a-7fa0b5747680, channelID: -[18a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]sending state message READY -[18b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[18c 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[18d 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[18e 01-05 02:50:20.44 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 -[18f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [83ccafb0]Inside sendExecuteMessage. Message INIT -[190 01-05 02:50:20.44 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... -[191 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [83ccafb0]sendExecuteMsg trigger event INIT -[182 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[192 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[194 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]Move state message INIT -[195 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[196 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[197 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]sending state message INIT -[193 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Received message READY from shim -[198 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83ccafb0]Handling ChaincodeMessage of type: READY(state:established) -[199 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Received message INIT from shim -[19a 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83ccafb0]Handling ChaincodeMessage of type: INIT(state:ready) -[19b 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[19c 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [83ccafb0]Received INIT, initializing chaincode -[19d 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[19e 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Init get response status: 200 -[19f 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Init succeeded. Sending COMPLETED -[1a0 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]Move state message COMPLETED -[1a1 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [83ccafb0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[1a2 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [83ccafb0]send state message COMPLETED -[1a3 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [83ccafb0]Received message COMPLETED from shim -[1a4 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[1a5 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [83ccafb0-273b-41e0-877a-7fa0b5747680]HandleMessage- COMPLETED. Notify -[1a6 01-05 02:50:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:83ccafb0-273b-41e0-877a-7fa0b5747680, channelID: -[1a7 01-05 02:50:20.44 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 02:50:20.44 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 02:50:20.44 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 02:50:20.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -[1ab 01-05 02:50:20.44 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 02:50:20.45 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 02:50:20.45 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-05 02:50:20.45 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-05 02:50:20.45 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' -[1b0 01-05 02:50:20.45 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -[1b1 01-05 02:50:20.45 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' -[1b2 01-05 02:50:20.45 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' -[1b3 01-05 02:50:20.45 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' -[1b4 01-05 02:50:20.45 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' -[1b5 01-05 02:50:20.45 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 02:50:20.45 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' -[1b7 01-05 02:50:20.45 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 02:50:20.45 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 02:50:20.45 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 02:50:20.45 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 02:50:20.45 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' -[1bc 01-05 02:50:20.45 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' -[1bd 01-05 02:50:24.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54456 -[1be 01-05 02:50:24.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c65e90 -[1bf 01-05 02:50:24.44 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 02:50:24.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[1c1 01-05 02:50:24.44 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 02:50:24.45 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 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[1c4 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ca22d0, header 0xc421c65f20 -[1c5 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -[1c6 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294 -[1c7 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294 channel id: -[1c8 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294 channel id: version: 1.1.0 -[1c9 01-05 02:50:24.45 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=871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294,syscc=true,proposal=0xc421ca22d0,canname=cscc:1.1.0 -[1ca 01-05 02:50:24.45 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 02:50:24.45 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 02:50:24.45 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 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [871adebd]Inside sendExecuteMessage. Message TRANSACTION -[1ce 01-05 02:50:24.45 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 02:50:24.45 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 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [871adebd]sendExecuteMsg trigger event TRANSACTION -[1d1 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [871adebd]Move state message TRANSACTION -[1d2 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [871adebd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[1d3 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[1d4 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [871adebd]sending state message TRANSACTION -[1d5 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]Received message TRANSACTION from shim -[1d6 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [871adebd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1d7 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [871adebd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[1d8 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[1d9 01-05 02:50:24.45 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[1da 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[1db 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -[1dc 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -[1dd 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -[1de 01-05 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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)(0xc421cf7120)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[1e5 01-05 02:50:24.46 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 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -[1e7 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -[1e8 01-05 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -[1e9 01-05 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[1f3 01-05 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.46 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[21a 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[21b 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[21c 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[21d 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 -[21e 01-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] 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 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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-05 02:50:24.47 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.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-05 02:50:24.47 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-05 02:50:24.47 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-05 02:50:24.47 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-05 02:50:24.47 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 -[235 01-05 02:50:24.47 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 -[236 01-05 02:50:24.47 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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{0x4f, 0x63, 0xe, 0x77, 0x36, 0xb7, 0xf3, 0x1b, 0xd0, 0x22, 0x8d, 0xe5, 0x9e, 0x49, 0x5f, 0x9d, 0x34, 0x7b, 0x44, 0x65, 0x7b, 0xe3, 0xc5, 0xfc, 0x3a, 0x1a, 0x4e, 0x51, 0x55, 0x39, 0xc6, 0xd3} txOffsets= -txId= locPointer=offset=38, bytesLength=12078 +[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 ] -[243 01-05 02:50:24.48 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-05 02:50:24.48 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-05 02:50:24.48 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-05 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.48 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[253 01-05 02:50:24.49 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 = [48533c06-d988-4f2c-9f4c-7aa47c944a81] -[254 01-05 02:50:24.49 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 02:50:24.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [48533c06-d988-4f2c-9f4c-7aa47c944a81] -[256 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[257 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[258 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[259 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[25a 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[25b 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[25c 01-05 02:50:24.49 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 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[25e 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[25f 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[260 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[261 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[262 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[263 01-05 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[268 01-05 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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-05 02:50:24.49 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-05 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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 02:50:24.49 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-05 02:50:24.49 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-05 02:50:24.49 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 02:50:24.49 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-05 02:50:24.49 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-05 02:50:24.49 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-05 02:50:24.49 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 -[279 01-05 02:50:24.49 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 -[27a 01-05 02:50:24.49 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 -[27b 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[27c 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[27d 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[27e 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[27f 01-05 02:50:24.49 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 -[280 01-05 02:50:24.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[281 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[282 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[283 01-05 02:50:24.50 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 -[284 01-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 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 -[288 01-05 02:50:24.50 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 -[289 01-05 02:50:24.50 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 -[28a 01-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 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 -[28d 01-05 02:50:24.50 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 -[28e 01-05 02:50:24.50 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 -[28f 01-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[294 01-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 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-05 02:50:24.50 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 02:50:24.50 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 02:50:24.50 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 02:50:24.50 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 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[29c 01-05 02:50:24.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[29d 01-05 02:50:24.50 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 02:50:24.50 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 02:50:24.50 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 02:50:24.50 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 02:50:24.50 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 02:50:24.50 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 02:50:24.51 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 02:50:24.51 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[2a5 01-05 02:50:24.51 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[2a6 01-05 02:50:24.51 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 02:50:24.51 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 02:50:24.51 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 02:50:24.51 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 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[2ab 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -[2ac 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2ad 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [80e0acd5-2b5c-48bd-8c7f-58e341340a46] -[2ae 01-05 02:50:24.52 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=80e0acd5-2b5c-48bd-8c7f-58e341340a46,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[2af 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -[2b0 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2b1 01-05 02:50:24.52 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 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [80e0acd5]Inside sendExecuteMessage. Message INIT -[2b3 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2b4 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [80e0acd5]sendExecuteMsg trigger event INIT -[2b5 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80e0acd5]Move state message INIT -[2b6 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [80e0acd5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2b7 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2b8 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80e0acd5]sending state message INIT -[2b9 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Received message INIT from shim -[2ba 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [80e0acd5]Handling ChaincodeMessage of type: INIT(state:ready) -[2bb 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2bc 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [80e0acd5]Received INIT, initializing chaincode -[2bd 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[2be 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Init get response status: 200 -[2bf 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Init succeeded. Sending COMPLETED -[2c0 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]Move state message COMPLETED -[2c1 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [80e0acd5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2c2 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [80e0acd5]send state message COMPLETED -[2c3 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [80e0acd5]Received message COMPLETED from shim -[2c4 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [80e0acd5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2c5 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [80e0acd5-2b5c-48bd-8c7f-58e341340a46]HandleMessage- COMPLETED. Notify -[2c6 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:80e0acd5-2b5c-48bd-8c7f-58e341340a46, channelID:businesschannel -[2c7 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2c8 01-05 02:50:24.52 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 02:50:24.52 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 [80e0acd5-2b5c-48bd-8c7f-58e341340a46] -[2ca 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2cb 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bac6b6b3-b172-4c79-807c-b96dde1835db] -[2cc 01-05 02:50:24.52 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=bac6b6b3-b172-4c79-807c-b96dde1835db,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[2cd 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[2ce 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2cf 01-05 02:50:24.52 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 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bac6b6b3]Inside sendExecuteMessage. Message INIT -[2d1 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2d2 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bac6b6b3]sendExecuteMsg trigger event INIT -[2d3 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac6b6b3]Move state message INIT -[2d4 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bac6b6b3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2d5 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2d6 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac6b6b3]sending state message INIT -[2d7 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Received message INIT from shim -[2d8 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac6b6b3]Handling ChaincodeMessage of type: INIT(state:ready) -[2d9 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2da 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bac6b6b3]Received INIT, initializing chaincode -[2db 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Init get response status: 200 -[2dc 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Init succeeded. Sending COMPLETED -[2dd 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]Move state message COMPLETED -[2de 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac6b6b3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2df 01-05 02:50:24.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac6b6b3]send state message COMPLETED -[2e0 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bac6b6b3]Received message COMPLETED from shim -[2e1 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bac6b6b3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2e2 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bac6b6b3-b172-4c79-807c-b96dde1835db]HandleMessage- COMPLETED. Notify -[2e3 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bac6b6b3-b172-4c79-807c-b96dde1835db, channelID:businesschannel -[2e4 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2e5 01-05 02:50:24.53 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 02:50:24.53 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 [bac6b6b3-b172-4c79-807c-b96dde1835db] -[2e7 01-05 02:50:24.53 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 02:50:24.53 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 = [bab2b400-d9c5-4f33-aea0-e482dc8dee64] -[2e9 01-05 02:50:24.53 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=bab2b400-d9c5-4f33-aea0-e482dc8dee64,syscc=true,proposal=0x0,canname=escc:1.1.0 -[2ea 01-05 02:50:24.53 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 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2ec 01-05 02:50:24.53 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 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bab2b400]Inside sendExecuteMessage. Message INIT -[2ee 01-05 02:50:24.53 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 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bab2b400]sendExecuteMsg trigger event INIT -[2f0 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bab2b400]Move state message INIT -[2f1 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bab2b400]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2f2 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2f3 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bab2b400]sending state message INIT -[2f4 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Received message INIT from shim -[2f5 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bab2b400]Handling ChaincodeMessage of type: INIT(state:ready) -[2f6 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2f7 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bab2b400]Received INIT, initializing chaincode -[2f8 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[2f9 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Init get response status: 200 -[2fa 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Init succeeded. Sending COMPLETED -[2fb 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]Move state message COMPLETED -[2fc 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bab2b400]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2fd 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bab2b400]send state message COMPLETED -[2fe 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bab2b400]Received message COMPLETED from shim -[2ff 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bab2b400]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[300 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bab2b400-d9c5-4f33-aea0-e482dc8dee64]HandleMessage- COMPLETED. Notify -[301 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bab2b400-d9c5-4f33-aea0-e482dc8dee64, channelID:businesschannel -[302 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[303 01-05 02:50:24.53 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 02:50:24.53 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 [bab2b400-d9c5-4f33-aea0-e482dc8dee64] -[305 01-05 02:50:24.53 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 02:50:24.53 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 = [cf40ec3d-9534-43df-abe3-852bd9c64d83] -[307 01-05 02:50:24.53 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=cf40ec3d-9534-43df-abe3-852bd9c64d83,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[308 01-05 02:50:24.53 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 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[30a 01-05 02:50:24.53 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 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cf40ec3d]Inside sendExecuteMessage. Message INIT -[30c 01-05 02:50:24.53 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 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cf40ec3d]sendExecuteMsg trigger event INIT -[30e 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cf40ec3d]Move state message INIT -[30f 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cf40ec3d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[310 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[311 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cf40ec3d]sending state message INIT -[312 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Received message INIT from shim -[313 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cf40ec3d]Handling ChaincodeMessage of type: INIT(state:ready) -[314 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[315 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [cf40ec3d]Received INIT, initializing chaincode -[316 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Init get response status: 200 -[317 01-05 02:50:24.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Init succeeded. Sending COMPLETED -[318 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]Move state message COMPLETED -[319 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cf40ec3d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[31a 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cf40ec3d]send state message COMPLETED -[31b 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cf40ec3d]Received message COMPLETED from shim -[31c 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cf40ec3d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[31d 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cf40ec3d-9534-43df-abe3-852bd9c64d83]HandleMessage- COMPLETED. Notify -[31e 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cf40ec3d-9534-43df-abe3-852bd9c64d83, channelID:businesschannel -[31f 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[320 01-05 02:50:24.54 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 02:50:24.54 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 [cf40ec3d-9534-43df-abe3-852bd9c64d83] -[322 01-05 02:50:24.54 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 02:50:24.54 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 = [285c7f7c-3513-40c6-a09c-297f24457c10] -[324 01-05 02:50:24.54 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=285c7f7c-3513-40c6-a09c-297f24457c10,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[325 01-05 02:50:24.54 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 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[327 01-05 02:50:24.54 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 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [285c7f7c]Inside sendExecuteMessage. Message INIT -[329 01-05 02:50:24.54 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 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [285c7f7c]sendExecuteMsg trigger event INIT -[32b 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [285c7f7c]Move state message INIT -[32c 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [285c7f7c]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[32d 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[32e 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [285c7f7c]sending state message INIT -[32f 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Received message INIT from shim -[330 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [285c7f7c]Handling ChaincodeMessage of type: INIT(state:ready) -[331 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[332 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [285c7f7c]Received INIT, initializing chaincode -[333 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[334 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Init get response status: 200 -[335 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Init succeeded. Sending COMPLETED -[336 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]Move state message COMPLETED -[337 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [285c7f7c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[338 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [285c7f7c]send state message COMPLETED -[339 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [285c7f7c]Received message COMPLETED from shim -[33a 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [285c7f7c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[33b 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [285c7f7c-3513-40c6-a09c-297f24457c10]HandleMessage- COMPLETED. Notify -[33c 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:285c7f7c-3513-40c6-a09c-297f24457c10, channelID:businesschannel -[33d 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[33e 01-05 02:50:24.54 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 02:50:24.54 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 [285c7f7c-3513-40c6-a09c-297f24457c10] -[340 01-05 02:50:24.54 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 02:50:24.54 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -[342 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -[343 01-05 02:50:24.54 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -[344 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -[345 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -[346 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -[347 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]Transaction completed. Sending COMPLETED -[348 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]Move state message COMPLETED -[349 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [871adebd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[34a 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [871adebd]send state message COMPLETED -[34b 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [871adebd]Received message COMPLETED from shim -[34c 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [871adebd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[34d 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294]HandleMessage- COMPLETED. Notify -[34e 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:871adebddbb58823dd457f3be5579cb10b4562f97af747694bcf3fd17b621294, channelID: -[34f 01-05 02:50:24.55 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 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[351 01-05 02:50:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[352 01-05 02:50:24.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:54456) -[353 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54472 -[354 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224f5560 -[355 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[356 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[357 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[358 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[359 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[35a 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224c78b0, header 0xc4224f5590 -[35b 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[35c 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d -[35d 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d channel id: -[35e 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -[35f 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d channel id: version: 1.1.0 -[360 01-05 02:50:30.33 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=96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d,syscc=true,proposal=0xc4224c78b0,canname=lscc:1.1.0 -[361 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[362 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[363 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[364 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [96217dd5]Inside sendExecuteMessage. Message TRANSACTION -[365 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[366 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[367 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [96217dd5]sendExecuteMsg trigger event TRANSACTION -[368 01-05 02:50:30.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96217dd5]Move state message TRANSACTION -[369 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [96217dd5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[36a 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[36b 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96217dd5]sending state message TRANSACTION -[36c 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]Received message TRANSACTION from shim -[36d 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96217dd5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[36e 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [96217dd5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[36f 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]Transaction completed. Sending COMPLETED -[370 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]Move state message COMPLETED -[371 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [96217dd5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[372 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [96217dd5]send state message COMPLETED -[373 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [96217dd5]Received message COMPLETED from shim -[374 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [96217dd5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[375 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d]HandleMessage- COMPLETED. Notify -[376 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:96217dd52cdbf6ba5b3f95cc824e8ed4019832041492b9060b771eee3265398d, channelID: -[377 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[378 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[379 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[37a 01-05 02:50:30.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54472) -[37b 01-05 02:50:30.52 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 -[37c 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[37d 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[37e 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[37f 01-05 02:50:30.53 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[380 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[381 01-05 02:50:30.54 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -[382 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -[383 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -[384 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[385 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[386 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422632e40 env 0xc4225e7a40 txn 0 -[387 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225e7a40 -[388 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -[389 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[38a 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[38b 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -[38c 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[38d 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[38e 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4226f3000, header channel_header:"\010\001\032\006\010\361\317\273\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\232/\212%\315\005\026\343\371b\311\303\334\272\221\277\326t\222&\314\r\322B" -[38f 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[390 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[391 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[392 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[393 01-05 02:50:30.55 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 -[394 01-05 02:50:30.55 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 -[395 01-05 02:50:30.55 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 -[397 01-05 02:50:30.55 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 -[398 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[399 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[39a 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[39b 01-05 02:50:30.55 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 -[39c 01-05 02:50:30.55 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 -[39d 01-05 02:50:30.55 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 -[39e 01-05 02:50:30.55 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 -[39f 01-05 02:50:30.55 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 -[396 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -[3a0 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[3a1 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[3a2 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[3a3 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[3a4 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[3a5 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[3a6 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3a7 01-05 02:50:30.55 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3a8 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3a9 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3aa 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3ab 01-05 02:50:30.56 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3ac 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3ad 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3ae 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3af 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3b0 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[3b1 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3b2 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3b3 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3b4 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3b5 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3b6 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[3b7 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[3b8 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[3b9 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[3ba 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[3bb 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[3bc 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[3bd 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[3be 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[3bf 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[3c0 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[3c1 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[3c2 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[3c3 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3c4 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3c5 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[3c6 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[3c7 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[3c8 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3c9 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3ca 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3cb 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3cc 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[3cd 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[3ce 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[3cf 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3d0 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[3d1 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3d2 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[3d3 01-05 02:50:30.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[3d4 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3d5 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[3d6 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[3d7 01-05 02:50:30.58 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 -[3d8 01-05 02:50:30.58 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 -[3d9 01-05 02:50:30.58 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 -[3da 01-05 02:50:30.58 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 -[3db 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[3dc 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[3dd 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[3de 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[3df 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[3e0 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3e1 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3e2 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3e3 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3e4 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3e5 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3e6 01-05 02:50:30.58 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 -[3e7 01-05 02:50:30.58 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 -[3e8 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3e9 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3ea 01-05 02:50:30.58 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 -[3eb 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[3ec 01-05 02:50:30.58 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 -[3ed 01-05 02:50:30.58 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 -[3ee 01-05 02:50:30.58 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 -[3ef 01-05 02:50:30.58 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 -[3f0 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[3f1 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[3f2 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[3f3 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[3f4 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[3f5 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[3f6 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[3f7 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[3f8 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[3f9 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3fa 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3fb 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3fc 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[3fd 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[3fe 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[3ff 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[400 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[401 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[402 01-05 02:50:30.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewFromChannelConfig.NewFromChannelConfig.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Resources -[403 01-05 02:50:30.60 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[404 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[405 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[406 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[407 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[408 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[409 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422632e40 env 0xc4225e7a40 txn 0 -[40a 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[40b 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[40c 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[40d 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -[40e 01-05 02:50:30.68 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 02:50:30.68 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 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[411 01-05 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[417 01-05 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 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 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[41f 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[420 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[421 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[422 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[423 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[424 01-05 02:50:30.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[425 01-05 02:50:30.68 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 -[426 01-05 02:50:30.68 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 -[427 01-05 02:50:30.68 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 -[428 01-05 02:50:30.68 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 -[429 01-05 02:50:30.68 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 -[42a 01-05 02:50:30.68 UTC] [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 -[42b 01-05 02:50:30.68 UTC] [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 -[42c 01-05 02:50:30.68 UTC] [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 -[42d 01-05 02:50:30.68 UTC] [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 -[42e 01-05 02:50:30.68 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: -[42f 01-05 02:50:30.68 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 -[430 01-05 02:50:30.68 UTC] [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 -[431 01-05 02:50:30.68 UTC] [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 -[432 01-05 02:50:30.68 UTC] [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 -[433 01-05 02:50:30.68 UTC] [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 -[434 01-05 02:50:30.68 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 -[435 01-05 02:50:30.68 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 -[436 01-05 02:50:30.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: [Group] /Channel -[437 01-05 02:50:30.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: [Group] /Channel/Orderer -[438 01-05 02:50:30.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: [Group] /Channel/Orderer/OrdererOrg -[439 01-05 02:50:30.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: [Value] /Channel/Orderer/OrdererOrg/MSP -[43a 01-05 02:50:30.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/Orderer/OrdererOrg/Writers -[43b 01-05 02:50:30.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/Orderer/OrdererOrg/Admins -[43c 01-05 02:50:30.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/Orderer/OrdererOrg/Readers -[43d 01-05 02:50:30.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: [Value] /Channel/Orderer/ChannelRestrictions -[43e 01-05 02:50:30.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: [Value] /Channel/Orderer/Capabilities -[43f 01-05 02:50:30.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: [Value] /Channel/Orderer/ConsensusType -[440 01-05 02:50:30.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: [Value] /Channel/Orderer/BatchSize -[441 01-05 02:50:30.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: [Value] /Channel/Orderer/BatchTimeout -[442 01-05 02:50:30.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/Orderer/BlockValidation -[443 01-05 02:50:30.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/Orderer/Admins -[444 01-05 02:50:30.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/Orderer/Readers -[445 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[446 01-05 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[449 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -[44a 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[450 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[451 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[452 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[454 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[455 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[456 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[458 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[459 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[45a 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 -[45b 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[45c 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[45d 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/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 -[45e 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[45f 01-05 02:50:30.71 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 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[461 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -[462 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[463 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[464 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[465 01-05 02:50:30.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -[466 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -[467 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6e, 0x36, 0x5e, 0xcb, 0x4a, 0x54, 0xb9, 0x4f, 0xf6, 0xc, 0xda, 0xc9, 0x43, 0xd5, 0x11, 0x89, 0xbd, 0x9d, 0x34, 0x76, 0x3d, 0x5b, 0x15, 0x8b, 0xdc, 0xb4, 0xab, 0x31, 0x57, 0x48, 0xae, 0x94} txOffsets= +[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= txId= locPointer=offset=70, bytesLength=12093 ] -[468 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx ID: [] to index -[469 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12093] for tx number:[0] ID: [] to blockNumTranNum index -[46a 01-05 02:50:30.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26080], isChainEmpty=[false], lastBlockNumber=[1] -[46b 01-05 02:50:30.72 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 02:50:30.73 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 02:50:30.73 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 02:50:30.73 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 02:50:30.73 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 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[471 01-05 02:50:30.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[472 01-05 02:50:30.73 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 02:50:30.73 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 02:50:30.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 [1] with [1] transactions -[475 01-05 02:50:30.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 -[476 01-05 02:50:30.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 [1] -[477 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[478 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[479 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[47a 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[47b 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[47c 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[47d 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[47e 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[47f 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[480 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[481 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[482 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[483 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4203242e0 env 0xc421a34c30 txn 0 -[484 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a34c30 -[485 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -[486 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[487 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[488 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -[489 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[48a 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[48b 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4224be000, header channel_header:"\010\001\032\006\010\363\317\273\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-\265\003t6gq!&\203\302\032*\307\036?\313X\221\314pD_C" -[48c 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[48d 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[48e 01-05 02:50:30.74 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 02:50:30.74 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 02:50:30.74 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 02:50:30.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[492 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[493 01-05 02:50:30.74 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 -[494 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[495 01-05 02:50:30.74 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 02:50:30.74 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 02:50:30.74 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 -[498 01-05 02:50:30.74 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 -[499 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[49a 01-05 02:50:30.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[49b 01-05 02:50:30.74 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 -[49c 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[49d 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[49e 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[49f 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4a0 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4a1 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4a2 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4a3 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4a4 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[4a5 01-05 02:50:30.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4a6 01-05 02:50:30.75 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 02:50:30.75 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 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4a9 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[4aa 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[4ab 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[4ac 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4ad 01-05 02:50:30.76 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 02:50:30.76 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 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4b0 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4b1 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4b2 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[4b3 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[4b4 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[4b5 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[4b6 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[4b7 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4b8 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[4b9 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4ba 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4bb 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4bc 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4bd 01-05 02:50:30.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4be 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[4bf 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[4c0 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4c1 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4c2 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4c3 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4c4 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[4c5 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[4c6 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[4c7 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[4c8 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[4c9 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[4ca 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[4cb 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[4cc 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4cd 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4ce 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4cf 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[4d0 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[4d1 01-05 02:50:30.77 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 02:50:30.77 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 02:50:30.77 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 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[4d5 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[4d6 01-05 02:50:30.77 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 -[4d7 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[4d8 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[4d9 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[4da 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[4db 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[4dc 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[4dd 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[4de 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[4df 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[4e0 01-05 02:50:30.77 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 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[4e2 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[4e3 01-05 02:50:30.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[4e4 01-05 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[4ef 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[4f0 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[4f1 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[4f2 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[4f3 01-05 02:50:30.78 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 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[4f5 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[4f6 01-05 02:50:30.78 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 02:50:30.78 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 02:50:30.78 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 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[4fa 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[4fb 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[4fc 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[4fd 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[4fe 01-05 02:50:30.78 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[4ff 01-05 02:50:30.78 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 02:50:30.81 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[501 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[502 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[503 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[504 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[505 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[506 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4203242e0 env 0xc421a34c30 txn 0 -[507 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[508 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[509 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[50a 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -[50b 01-05 02:50:30.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] -[50c 01-05 02:50:30.83 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 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[50e 01-05 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[514 01-05 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 UTC] [github.com/hyperledger/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 02:50:30.83 UTC] [github.com/hyperledger/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 02:50:30.83 UTC] [github.com/hyperledger/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 02:50:30.83 UTC] [github.com/hyperledger/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 02:50:30.83 UTC] [github.com/hyperledger/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 02:50:30.83 UTC] [github.com/hyperledger/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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 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 02:50:30.83 UTC] [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 02:50:30.83 UTC] [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 02:50:30.83 UTC] [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 02:50:30.83 UTC] [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 02:50:30.83 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: -[52c 01-05 02:50:30.83 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 -[52d 01-05 02:50:30.83 UTC] [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 02:50:30.83 UTC] [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 02:50:30.83 UTC] [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 02:50:30.83 UTC] [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 02:50:30.83 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: -[532 01-05 02:50:30.83 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 -[533 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/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 -[534 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[538 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[539 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[53a 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[53b 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[53c 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[53d 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[53e 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[53f 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[540 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[541 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[542 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[543 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -[545 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -[546 01-05 02:50:30.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -[547 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[548 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[549 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[54a 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -[54b 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -[54c 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 -[54d 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[54e 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[54f 01-05 02:50:30.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[550 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[552 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[553 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[554 01-05 02:50:30.86 UTC] [github.com/hyperledger/fabric/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 -[555 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 -[556 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 -[557 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 -[558 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 -[559 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 -[55a 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 -[55b 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/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 -[55c 01-05 02:50:30.87 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 02:50:30.87 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 02:50:30.87 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 02:50:30.87 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 02:50:30.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[561 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[562 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[563 01-05 02:50:30.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -[564 01-05 02:50:30.88 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 02:50:30.88 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{0x41, 0x81, 0xd6, 0x8a, 0xc7, 0x9d, 0xc1, 0xe7, 0x3d, 0x11, 0x42, 0x46, 0x49, 0x23, 0x2f, 0x26, 0x59, 0xc7, 0xc0, 0xda, 0x50, 0x2c, 0xb, 0xcc, 0xf4, 0x52, 0xeb, 0x97, 0x30, 0x45, 0x3f, 0xd9} txOffsets= +[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= txId= locPointer=offset=70, bytesLength=12151 ] -[566 01-05 02:50:30.88 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 -[567 01-05 02:50:30.88 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 -[568 01-05 02:50:30.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=[40096], isChainEmpty=[false], lastBlockNumber=[2] -[569 01-05 02:50:30.89 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 02:50:30.89 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 02:50:30.89 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 02:50:30.89 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 02:50:30.89 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 02:50:30.89 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 02:50:30.89 UTC] [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 02:50:30.89 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 02:50:30.89 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 02:50:30.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 [2] with [1] transactions -[573 01-05 02:50:30.89 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 02:50:30.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 [2] -[575 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[576 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[577 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[578 01-05 02:50:30.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[579 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[57a 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[57b 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[57c 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[57d 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[57e 01-05 02:50:30.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[57f 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54522 -[580 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4230e0570 -[581 01-05 02:50:32.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 -[582 01-05 02:50:32.40 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[583 01-05 02:50:32.41 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 02:50:32.41 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 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[586 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422fbbd60, header 0xc4230e05a0 -[587 01-05 02:50:32.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" -[588 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 -[589 01-05 02:50:32.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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -[58a 01-05 02:50:32.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 -[58b 01-05 02:50:32.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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -[58c 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel -[58d 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.disableJavaCCInst -> DEBU java chaincode disabled -[58e 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel version: 1.1.0 -[58f 01-05 02:50:32.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=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993,syscc=true,proposal=0xc422fbbd60,canname=lscc:1.1.0 -[590 01-05 02:50:32.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 -[591 01-05 02:50:32.41 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 02:50:32.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 -[593 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]Inside sendExecuteMessage. Message TRANSACTION -[594 01-05 02:50:32.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... -[595 01-05 02:50:32.41 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 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]sendExecuteMsg trigger event TRANSACTION -[597 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message TRANSACTION -[598 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[599 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[59a 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message TRANSACTION -[59b 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message TRANSACTION from shim -[59c 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[59d 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [49f7d1e6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[59e 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [49f7d1e6]Sending GET_STATE -[59f 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message GET_STATE from shim -[5a0 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5a1 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [49f7d1e6]Received GET_STATE, invoking get state from ledger -[5a2 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5a3 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6] getting state for chaincode lscc, key exp02, channel businesschannel -[5a4 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[5a5 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]No state associated with key: +[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: exp02. Sending RESPONSE with an empty payload -[5a6 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]handleGetState serial send RESPONSE -[5a7 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message RESPONSE from shim -[5a8 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5a9 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]before send -[5aa 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]after send -[5ab 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [49f7d1e6]Received RESPONSE, communicated (state:ready) -[5ac 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [49f7d1e6]GetState received payload RESPONSE -[5ad 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [49f7d1e6]Sending PUT_STATE -[5ae 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message PUT_STATE from shim -[5af 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5b0 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5b1 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]state is ready -[5b2 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]Completed PUT_STATE. Sending RESPONSE -[5b3 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]enterBusyState trigger event RESPONSE -[5b4 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message RESPONSE -[5b5 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5b6 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5b7 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message RESPONSE -[5b8 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message RESPONSE from shim -[5b9 01-05 02:50:32.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5ba 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]before send -[5bb 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [49f7d1e6]after send -[5bc 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [49f7d1e6]Received RESPONSE, communicated (state:ready) -[5bd 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [49f7d1e6]Received RESPONSE. Successfully updated state -[5be 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -[5bf 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Transaction completed. Sending COMPLETED -[5c0 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Move state message COMPLETED -[5c1 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[5c2 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]send state message COMPLETED -[5c3 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message COMPLETED from shim -[5c4 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5c5 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993]HandleMessage- COMPLETED. Notify -[5c6 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -[5c7 01-05 02:50:32.42 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 02:50:32.42 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=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993,syscc=false,proposal=0xc422fbbd60,canname=exp02:1.0 -[5c9 01-05 02:50:32.42 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 02:50:32.42 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 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Executable is chaincode -[5cc 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[5cd 01-05 02:50:32.42 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 02:50:32.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] -[5cf 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) -[5d0 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[5d1 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/chaincode] launch -> DEBU start container with env: +[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: CORE_CHAINCODE_ID_NAME=exp02:1.0 CORE_PEER_TLS_ENABLED=true CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key @@ -1565,17 +1565,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 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock -[5d3 01-05 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock -[5d4 01-05 02:50:32.42 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 02:50:32.42 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 02:50:32.42 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 02:50:32.42 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 02:50:32.42 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 02:50:32.42 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -[5da 01-05 02:50:32.43 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 02:50:32.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 -[5dc 01-05 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +[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 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 +1584,1699 @@ 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 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -[5de 01-05 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: -[5df 01-05 02:50:32.46 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.1.0 -[5e0 01-05 02:50:38.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -[5e1 01-05 02:50:38.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -[5e2 01-05 02:50:38.69 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 02:50:38.77 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 02:50:39.38 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 02:50:39.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) -[5e6 01-05 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 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 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message READY -[5f3 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: READY in state established -[5f4 01-05 02:50:39.45 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 [49f7d1e6]Entered state ready -[5f5 01-05 02:50:39.45 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:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -[5f6 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message READY -[5f7 01-05 02:50:39.45 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 02:50:39.45 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 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Entry -[5fa 01-05 02:50:39.45 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 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]Inside sendExecuteMessage. Message INIT -[5fc 01-05 02:50:39.45 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 02:50:39.45 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 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]sendExecuteMsg trigger event INIT -[5ff 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message INIT -[600 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[601 01-05 02:50:39.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 -[602 01-05 02:50:39.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message INIT -[603 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message PUT_STATE from shim -[604 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[605 01-05 02:50:39.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 -[606 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]state is ready -[607 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]Completed PUT_STATE. Sending RESPONSE -[608 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]enterBusyState trigger event RESPONSE -[609 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message RESPONSE -[60a 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[60b 01-05 02:50:39.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 -[60c 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message RESPONSE -[60d 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message PUT_STATE from shim -[60e 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[60f 01-05 02:50:39.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 -[610 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]state is ready -[611 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [49f7d1e6]Completed PUT_STATE. Sending RESPONSE -[612 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [49f7d1e6]enterBusyState trigger event RESPONSE -[613 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message RESPONSE -[614 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[615 01-05 02:50:39.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 -[616 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message RESPONSE -[617 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message COMPLETED from shim -[618 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[619 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993]HandleMessage- COMPLETED. Notify -[61a 01-05 02:50:39.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -[61b 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.Execute -> DEBU Exit -[61c 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[61d 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[61e 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -[61f 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[620 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel chaincode id: name:"lscc" -[621 01-05 02:50:39.47 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 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 channel id: businesschannel version: 1.1.0 -[623 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993,syscc=true,proposal=0xc422fbbd60,canname=escc:1.1.0 -[624 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[625 01-05 02:50:39.47 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 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[627 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]Inside sendExecuteMessage. Message TRANSACTION -[628 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[629 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[62a 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [49f7d1e6]sendExecuteMsg trigger event TRANSACTION -[62b 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Move state message TRANSACTION -[62c 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[62d 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[62e 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]sending state message TRANSACTION -[62f 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Received message TRANSACTION from shim -[630 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[631 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [49f7d1e6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[632 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[633 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[634 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Transaction completed. Sending COMPLETED -[635 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]Move state message COMPLETED -[636 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [49f7d1e6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[637 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [49f7d1e6]send state message COMPLETED -[638 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [49f7d1e6]Received message COMPLETED from shim -[639 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[63a 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993]HandleMessage- COMPLETED. Notify -[63b 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993, channelID:businesschannel -[63c 01-05 02:50:39.47 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 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[63e 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[63f 01-05 02:50:39.47 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 [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -[640 01-05 02:50:39.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54522) -[641 01-05 02:50:41.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -[642 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -[643 01-05 02:50:41.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[644 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[645 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4226c22e0 env 0xc422a4d650 txn 0 -[646 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422a4d650 -[647 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -[648 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[649 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[64a 01-05 02:50:41.57 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[64b 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[64c 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[64d 01-05 02:50:41.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c55500, header channel_header:"\010\003\032\014\010\370\317\273\322\005\020\360\253\223\302\001\"\017businesschannel*@49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993:\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\202\013_\341\026=\004\031\374=\271Z\375?\201c\005J\255\231\246oS^" -[64e 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[64f 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[650 01-05 02:50:41.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[651 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[652 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -[653 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[654 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422a4d650 envbytes 0xc42258e380 -[655 01-05 02:50:41.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc42258e380 -[656 01-05 02:50:41.60 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 02:50:41.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 = [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -[658 01-05 02:50:41.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=641a1819-1d97-47ab-b9da-d1119fd5730f,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[659 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 chaindID businesschannel -[65a 01-05 02:50:41.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 -[65b 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[65c 01-05 02:50:41.61 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 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [641a1819]Inside sendExecuteMessage. Message TRANSACTION -[65e 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[65f 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [641a1819]sendExecuteMsg trigger event TRANSACTION -[660 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [641a1819]Move state message TRANSACTION -[661 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [641a1819]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[662 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[663 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [641a1819]sending state message TRANSACTION -[664 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]Received message TRANSACTION from shim -[665 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [641a1819]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[666 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [641a1819]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[667 01-05 02:50:41.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[668 01-05 02:50:41.62 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 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[66a 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -[66d 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[66e 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [4862aac3-87a7-428f-a052-398e036e47c8] -[66f 01-05 02:50:41.62 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 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [4862aac3-87a7-428f-a052-398e036e47c8] -[671 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[672 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x983bf0), deserializer:(*msp.mspManagerImpl)(0xc4224fe500)} -[673 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[674 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]Transaction completed. Sending COMPLETED -[675 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]Move state message COMPLETED -[676 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [641a1819]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[677 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [641a1819]send state message COMPLETED -[678 01-05 02:50:41.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [641a1819]Received message COMPLETED from shim -[679 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [641a1819]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[67a 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [641a1819-1d97-47ab-b9da-d1119fd5730f]HandleMessage- COMPLETED. Notify -[67b 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:641a1819-1d97-47ab-b9da-d1119fd5730f, channelID:businesschannel -[67c 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[67d 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] -[67e 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc42258e380 -[67f 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422a4d650 envbytes 0xc42258e380 -[680 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4226c22e0 env 0xc422a4d650 txn 0 -[681 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[682 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[683 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -[684 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[685 01-05 02:50:41.63 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 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[687 01-05 02:50:41.63 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 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[689 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -[68a 01-05 02:50:41.63 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 [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] marked as valid by state validator -[68b 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[68c 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[68d 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[68e 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -[68f 01-05 02:50:41.63 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -[690 01-05 02:50:41.63 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{0xe, 0x90, 0x8f, 0xe0, 0x5d, 0x11, 0xe, 0x2b, 0x26, 0x2, 0x93, 0x17, 0xd8, 0xf4, 0xe7, 0xf8, 0x68, 0xa3, 0x4e, 0xab, 0x6, 0x60, 0xe1, 0x9e, 0xc6, 0x8a, 0x90, 0xc8, 0x16, 0x7f, 0xf0, 0xb9} txOffsets= -txId=49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 locPointer=offset=70, bytesLength=3455 +[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 ] -[691 01-05 02:50:41.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=40166, bytesLength=3455] for tx ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to index -[692 01-05 02:50:41.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=40166, bytesLength=3455] for tx number:[0] ID: [49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993] to blockNumTranNum index -[693 01-05 02:50:41.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=[45416], isChainEmpty=[false], lastBlockNumber=[3] -[694 01-05 02:50:41.64 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 02:50:41.64 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 02:50:41.64 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 02:50:41.64 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 02:50:41.64 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 02:50:41.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 -[69a 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[69b 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[69c 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -[69d 01-05 02:50:41.64 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 02:50:41.64 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 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -[6a0 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -[6a1 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[6a2 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 49f7d1e6772cc93ffd25bee0aeb7876438718ea978b74a1b785ab6ab7280f993 -[6a3 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[6a4 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[6a5 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[6a6 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[6a7 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[6a8 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[6a9 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[6aa 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[6ab 01-05 02:50:41.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[6ac 01-05 02:50:50.01 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -[6ae 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[6af 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[6b0 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b802a0 env 0xc4230e02a0 txn 0 -[6ad 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -[6b1 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4230e02a0 -[6b2 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU validateChannelHeader info: header type 3 -[6b4 01-05 02:50:50.02 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[6b5 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -[6b6 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[6b7 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[6b8 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422bb6000, header channel_header:"\010\003\032\014\010\377\317\273\322\005\020\350\215\323\261\002\"\017businesschannel*@c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc:\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\030WdLm\371\022\323\3248\327\326\330\236.\032\001\352\201\020\325 DEBU validateEndorserTransaction info: there are 1 actions -[6ba 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[6bb 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[6bc 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[6bd 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -[6be 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[6bf 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4230e02a0 envbytes 0xc422e15000 -[6c0 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422e15000 -[6c1 01-05 02:50:50.03 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 02:50:50.03 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 = [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -[6c3 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=dfe6ddf3-afeb-4697-a826-27b835bddeda,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[6c4 01-05 02:50:50.03 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc chaindID businesschannel -[6c5 01-05 02:50:50.03 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 02:50:50.04 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6c7 01-05 02:50:50.05 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 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dfe6ddf3]Inside sendExecuteMessage. Message TRANSACTION -[6c9 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6ca 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dfe6ddf3]sendExecuteMsg trigger event TRANSACTION -[6cb 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfe6ddf3]Move state message TRANSACTION -[6cc 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dfe6ddf3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6cd 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6ce 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfe6ddf3]sending state message TRANSACTION -[6cf 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]Received message TRANSACTION from shim -[6d0 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfe6ddf3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6d1 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dfe6ddf3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6d2 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[6d3 01-05 02:50:50.05 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 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[6d5 01-05 02:50:50.05 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 02:50:50.05 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 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -[6d8 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[6d9 01-05 02:50:50.05 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 = [448b7c55-a780-4caa-b80b-7d12d9a37c87] -[6da 01-05 02:50:50.05 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 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [448b7c55-a780-4caa-b80b-7d12d9a37c87] -[6dc 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[6dd 01-05 02:50:50.05 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)(0xc4224fe500)} -[6de 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -[6df 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]Transaction completed. Sending COMPLETED -[6e0 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]Move state message COMPLETED -[6e1 01-05 02:50:50.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfe6ddf3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[6e2 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfe6ddf3]send state message COMPLETED -[6e3 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfe6ddf3]Received message COMPLETED from shim -[6e4 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dfe6ddf3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6e5 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [dfe6ddf3-afeb-4697-a826-27b835bddeda]HandleMessage- COMPLETED. Notify -[6e6 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:dfe6ddf3-afeb-4697-a826-27b835bddeda, channelID:businesschannel -[6e7 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6e8 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc, error Chaincode exp02 is already instantiated -[6e9 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] -[6ea 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422e15000 -[6eb 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4230e02a0 envbytes 0xc422e15000 -[6ec 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc returned error Chaincode exp02 is already instantiated -[6ed 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b802a0 env 0xc4230e02a0 txn 0 -[6ee 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -[6ef 01-05 02:50:50.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[6f0 01-05 02:50:50.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -[6f1 01-05 02:50:50.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] -[6f2 01-05 02:50:50.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] -[6f3 01-05 02:50:50.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[6f4 01-05 02:50:50.08 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 [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -[6f5 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[6f6 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[6f7 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[6f8 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -[6f9 01-05 02:50:50.08 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 02:50:50.08 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{0x4, 0x54, 0x21, 0x67, 0xdf, 0x21, 0x1b, 0x2e, 0xa, 0xd7, 0xd0, 0x9, 0xa7, 0xc, 0xf3, 0x44, 0x38, 0x6f, 0x1f, 0x90, 0x3, 0x52, 0xcd, 0xef, 0x5, 0x8a, 0x93, 0xb8, 0xa, 0xcf, 0x60, 0x61} txOffsets= -txId=c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc locPointer=offset=70, bytesLength=3460 +[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 ] -[6fb 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3460] for tx ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to index -[6fc 01-05 02:50:50.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45486, bytesLength=3460] for tx number:[0] ID: [c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc] to blockNumTranNum index -[6fd 01-05 02:50:50.09 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] -[6fe 01-05 02:50:50.09 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 02:50:50.09 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 02:50:50.09 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 02:50:50.09 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 02:50:50.09 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 02:50:50.09 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 02:50:50.09 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 02:50:50.09 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 02:50:50.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -[707 01-05 02:50:50.09 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 02:50:50.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -[709 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[70a 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: c62c20a8f1df8486441ef8250180dc8ef084f69689ca1bec2f01ef5cf2023ffc -[70b 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[70c 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[70d 01-05 02:50:50.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[70e 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[70f 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[710 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[711 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[712 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[713 01-05 02:50:50.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[714 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54540 -[715 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228f7c20 -[716 01-05 02:50:56.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 -[717 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[718 01-05 02:50:56.08 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 02:50:56.08 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 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[71b 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4229146e0, header 0xc4228f7c50 -[71c 01-05 02:50:56.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:"exp02" -[71d 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 -[71e 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -[71f 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[720 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -[721 01-05 02:50:56.08 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel -[722 01-05 02:50:56.08 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=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070,syscc=true,proposal=0xc4229146e0,canname=lscc:1.1.0 -[723 01-05 02:50:56.08 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 02:50:56.09 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 02:50:56.09 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 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]Inside sendExecuteMessage. Message TRANSACTION -[727 01-05 02:50:56.09 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 02:50:56.09 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 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]sendExecuteMsg trigger event TRANSACTION -[72a 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message TRANSACTION -[72b 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[72c 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[72d 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message TRANSACTION -[72e 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Received message TRANSACTION from shim -[72f 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[730 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [48b4afc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[731 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [48b4afc7]Sending GET_STATE -[732 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message GET_STATE from shim -[733 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[734 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [48b4afc7]Received GET_STATE, invoking get state from ledger -[735 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[736 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7] getting state for chaincode lscc, key exp02, channel businesschannel -[737 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[738 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Got state. Sending RESPONSE -[739 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]handleGetState serial send RESPONSE -[73a 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Received message RESPONSE from shim -[73b 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[73c 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [48b4afc7]before send -[73d 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [48b4afc7]after send -[73e 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [48b4afc7]Received RESPONSE, communicated (state:ready) -[73f 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [48b4afc7]GetState received payload RESPONSE -[740 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Transaction completed. Sending COMPLETED -[741 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Move state message COMPLETED -[742 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[743 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]send state message COMPLETED -[744 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message COMPLETED from shim -[745 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[746 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070]HandleMessage- COMPLETED. Notify -[747 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070, channelID:businesschannel -[748 01-05 02:50:56.09 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 02:50:56.09 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 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel version: 1.0 -[74b 01-05 02:50:56.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=exp02,version=1.0,txid=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070,syscc=false,proposal=0xc4229146e0,canname=exp02:1.0 -[74c 01-05 02:50:56.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) : exp02:1.0 -[74d 01-05 02:50:56.09 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 02:50:56.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: exp02:1.0 -[74f 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]Inside sendExecuteMessage. Message TRANSACTION -[750 01-05 02:50:56.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... -[751 01-05 02:50:56.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... -[752 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]sendExecuteMsg trigger event TRANSACTION -[753 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message TRANSACTION -[754 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[755 01-05 02:50:56.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 -[756 01-05 02:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message TRANSACTION -[757 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message GET_STATE from shim -[758 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[759 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [48b4afc7]Received GET_STATE, invoking get state from ledger -[75a 01-05 02:50:56.10 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 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7] getting state for chaincode exp02, key a, channel businesschannel -[75c 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -[75d 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Got state. Sending RESPONSE -[75e 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]handleGetState serial send RESPONSE -[75f 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message GET_STATE from shim -[760 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[761 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [48b4afc7]Received GET_STATE, invoking get state from ledger -[762 01-05 02:50:56.10 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 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7] getting state for chaincode exp02, key b, channel businesschannel -[764 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -[765 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Got state. Sending RESPONSE -[766 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]handleGetState serial send RESPONSE -[767 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message PUT_STATE from shim -[768 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[769 01-05 02:50:56.10 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 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]state is ready -[76b 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Completed PUT_STATE. Sending RESPONSE -[76c 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]enterBusyState trigger event RESPONSE -[76d 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message RESPONSE -[76e 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[76f 01-05 02:50:56.10 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 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message RESPONSE -[771 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message PUT_STATE from shim -[772 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[773 01-05 02:50:56.10 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 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]state is ready -[775 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [48b4afc7]Completed PUT_STATE. Sending RESPONSE -[776 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [48b4afc7]enterBusyState trigger event RESPONSE -[777 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message RESPONSE -[778 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[779 01-05 02:50:56.10 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 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message RESPONSE -[77b 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message COMPLETED from shim -[77c 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[77d 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070]HandleMessage- COMPLETED. Notify -[77e 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070, channelID:businesschannel -[77f 01-05 02:50:56.10 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 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[781 01-05 02:50:56.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 -[782 01-05 02:50:56.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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -[783 01-05 02:50:56.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[784 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel chaincode id: name:"exp02" -[785 01-05 02:50:56.11 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 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 channel id: businesschannel version: 1.1.0 -[787 01-05 02:50:56.11 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=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070,syscc=true,proposal=0xc4229146e0,canname=escc:1.1.0 -[788 01-05 02:50:56.11 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 02:50:56.11 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 02:50:56.11 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 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]Inside sendExecuteMessage. Message TRANSACTION -[78c 01-05 02:50:56.11 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 02:50:56.11 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 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [48b4afc7]sendExecuteMsg trigger event TRANSACTION -[78f 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Move state message TRANSACTION -[790 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[791 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[792 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]sending state message TRANSACTION -[793 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Received message TRANSACTION from shim -[794 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[795 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [48b4afc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[796 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[797 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[798 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Transaction completed. Sending COMPLETED -[799 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]Move state message COMPLETED -[79a 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [48b4afc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[79b 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [48b4afc7]send state message COMPLETED -[79c 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [48b4afc7]Received message COMPLETED from shim -[79d 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[79e 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070]HandleMessage- COMPLETED. Notify -[79f 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070, channelID:businesschannel -[7a0 01-05 02:50:56.11 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 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[7a2 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[7a3 01-05 02:50:56.11 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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -[7a4 01-05 02:50:56.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54540) -[7a5 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -[7a6 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[7a7 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[7a8 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423181180 env 0xc4231a1890 txn 0 -[7a9 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4231a1890 -[7aa 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -[7ab 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[7ac 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[7ad 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP d6a99c95ec862ff0a34ee134952b49ed36c5bfdecfe63d0f40c4d31d385dbdfc} -[7ae 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[7af 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[7b0 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42180b800, header channel_header:"\010\003\032\013\010\220\320\273\322\005\020\200\306\217(\"\017businesschannel*@48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070:\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\030Au\3223\257\265\311\275\355\241E\373\300\261\277\241n\331U5%\000\255\301" -[7b1 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[7b2 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[7b3 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[7b4 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[7b5 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -[7b6 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[7b7 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc4231a1890 envbytes 0xc422f7e000 -[7b8 01-05 02:50:58.13 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 = [6a4d92e7-8498-46f9-946d-2efeb7a9f76a] -[7b9 01-05 02:50:58.13 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 -[7ba 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6a4d92e7-8498-46f9-946d-2efeb7a9f76a] -[7bb 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc422f7e000 -[7bc 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7bd 01-05 02:50:58.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 = [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -[7be 01-05 02:50:58.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=e17c3432-7931-42ac-832f-28fffd23a7af,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[7bf 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 chaindID businesschannel -[7c0 01-05 02:50:58.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 -[7c1 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7c2 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[7c3 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e17c3432]Inside sendExecuteMessage. Message TRANSACTION -[7c4 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7c5 01-05 02:50:58.13 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e17c3432]sendExecuteMsg trigger event TRANSACTION -[7c6 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e17c3432]Move state message TRANSACTION -[7c7 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e17c3432]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7c8 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7c9 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e17c3432]sending state message TRANSACTION -[7ca 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]Received message TRANSACTION from shim -[7cb 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e17c3432]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7cc 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e17c3432]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7cd 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[7ce 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[7cf 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[7d0 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]Transaction completed. Sending COMPLETED -[7d1 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]Move state message COMPLETED -[7d2 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e17c3432]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7d3 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e17c3432]send state message COMPLETED -[7d4 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e17c3432]Received message COMPLETED from shim -[7d5 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e17c3432]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7d6 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [e17c3432-7931-42ac-832f-28fffd23a7af]HandleMessage- COMPLETED. Notify -[7d7 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:e17c3432-7931-42ac-832f-28fffd23a7af, channelID:businesschannel -[7d8 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7d9 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] -[7da 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc422f7e000 -[7db 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc4231a1890 envbytes 0xc422f7e000 -[7dc 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423181180 env 0xc4231a1890 txn 0 -[7dd 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[7de 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[7df 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -[7e0 01-05 02:50:58.14 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] -[7e1 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -[7e2 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[7e3 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[7e4 01-05 02:50:58.14 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 -[7e5 01-05 02:50:58.14 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} -[7e6 01-05 02:50:58.14 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 -[7e7 01-05 02:50:58.14 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} -[7e8 01-05 02:50:58.14 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 -[7e9 01-05 02:50:58.14 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} -[7ea 01-05 02:50:58.14 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 [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] marked as valid by state validator -[7eb 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[7ed 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[7ec 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -[7ee 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[7ef 01-05 02:50:58.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -[7f0 01-05 02:50:58.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 [5] -[7f1 01-05 02:50:58.19 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{0x1a, 0x80, 0x18, 0x1d, 0x93, 0xc3, 0x60, 0x8e, 0xce, 0xbf, 0x47, 0x31, 0xed, 0x4e, 0xf9, 0xa0, 0x87, 0xb9, 0xd2, 0xce, 0x1f, 0xf7, 0x3b, 0xc3, 0xc0, 0x4d, 0x5a, 0xeb, 0x7b, 0x63, 0x3c, 0x18} txOffsets= -txId=48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 locPointer=offset=70, bytesLength=2917 +[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 ] -[7f2 01-05 02:50:58.19 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=2917] for tx ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to index -[7f3 01-05 02:50:58.19 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=2917] for tx number:[0] ID: [48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070] to blockNumTranNum index -[7f4 01-05 02:50:58.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=[55524], isChainEmpty=[false], lastBlockNumber=[5] -[7f5 01-05 02:50:58.20 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 02:50:58.20 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 02:50:58.20 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 02:50:58.20 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 02:50:58.20 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 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[7fb 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[7fc 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[7fd 01-05 02:50:58.20 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 02:50:58.20 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 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -[800 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -[801 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[802 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 48b4afc76337c2f0aec4aba440f514e7168a61295f1d4afa9d80fe348d338070 -[803 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[804 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[805 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[806 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[807 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[808 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[809 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[80a 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[80b 01-05 02:50:58.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[80c 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54554 -[80d 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d59e60 -[80e 01-05 02:51:03.77 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 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[810 01-05 02:51:03.77 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 02:51:03.77 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 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[813 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42191e230, header 0xc421d59e90 -[814 01-05 02:51:03.77 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 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a -[816 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -[817 01-05 02:51:03.77 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 02:51:03.77 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 = [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -[819 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel -[81a 01-05 02:51:03.77 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=3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a,syscc=true,proposal=0xc42191e230,canname=lscc:1.1.0 -[81b 01-05 02:51:03.77 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 02:51:03.77 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 02:51:03.77 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 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]Inside sendExecuteMessage. Message TRANSACTION -[81f 01-05 02:51:03.77 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 02:51:03.77 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 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]sendExecuteMsg trigger event TRANSACTION -[822 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Move state message TRANSACTION -[823 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[824 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[825 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]sending state message TRANSACTION -[826 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Received message TRANSACTION from shim -[827 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[828 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c7326ec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[829 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c7326ec]Sending GET_STATE -[82a 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message GET_STATE from shim -[82b 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[82c 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3c7326ec]Received GET_STATE, invoking get state from ledger -[82d 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[82e 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec] getting state for chaincode lscc, key exp02, channel businesschannel -[82f 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[830 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec]Got state. Sending RESPONSE -[831 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3c7326ec]handleGetState serial send RESPONSE -[832 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Received message RESPONSE from shim -[833 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[834 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c7326ec]before send -[835 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3c7326ec]after send -[836 01-05 02:51:03.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [3c7326ec]Received RESPONSE, communicated (state:ready) -[837 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3c7326ec]GetState received payload RESPONSE -[838 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Transaction completed. Sending COMPLETED -[839 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Move state message COMPLETED -[83a 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[83b 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]send state message COMPLETED -[83c 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message COMPLETED from shim -[83d 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[83e 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a]HandleMessage- COMPLETED. Notify -[83f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a, channelID:businesschannel -[840 01-05 02:51:03.78 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 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel version: 1.0 -[843 01-05 02:51:03.78 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=3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a,syscc=false,proposal=0xc42191e230,canname=exp02:1.0 -[844 01-05 02:51:03.78 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 02:51:03.78 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 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]Inside sendExecuteMessage. Message TRANSACTION -[848 01-05 02:51:03.78 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 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]sendExecuteMsg trigger event TRANSACTION -[84b 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Move state message TRANSACTION -[84c 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[84d 01-05 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]sending state message TRANSACTION -[84f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message GET_STATE from shim -[850 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[851 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3c7326ec]Received GET_STATE, invoking get state from ledger -[852 01-05 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec] getting state for chaincode exp02, key a, channel businesschannel -[854 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -[855 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3c7326ec]Got state. Sending RESPONSE -[856 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3c7326ec]handleGetState serial send RESPONSE -[857 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message COMPLETED from shim -[858 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[859 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a]HandleMessage- COMPLETED. Notify -[85a 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a, channelID:businesschannel -[85b 01-05 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[85d 01-05 02:51:03.78 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 02:51:03.78 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 [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -[85f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[860 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel chaincode id: name:"exp02" -[861 01-05 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a channel id: businesschannel version: 1.1.0 -[863 01-05 02:51:03.78 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=3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a,syscc=true,proposal=0xc42191e230,canname=escc:1.1.0 -[864 01-05 02:51:03.78 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 02:51:03.78 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 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]Inside sendExecuteMessage. Message TRANSACTION -[868 01-05 02:51:03.78 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 02:51:03.78 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 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3c7326ec]sendExecuteMsg trigger event TRANSACTION -[86b 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Move state message TRANSACTION -[86c 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[86d 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[86e 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]sending state message TRANSACTION -[86f 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Received message TRANSACTION from shim -[870 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[871 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3c7326ec]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[872 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[873 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[874 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Transaction completed. Sending COMPLETED -[875 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]Move state message COMPLETED -[876 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3c7326ec]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[877 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3c7326ec]send state message COMPLETED -[878 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3c7326ec]Received message COMPLETED from shim -[879 01-05 02:51:03.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[87a 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a]HandleMessage- COMPLETED. Notify -[87b 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a, channelID:businesschannel -[87c 01-05 02:51:03.79 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 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[87e 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[87f 01-05 02:51:03.79 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 [3c7326ec2984c35d97cef10a61c3fe3e1d11376ddff210869bc364ff8840a28a] -[880 01-05 02:51:03.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54554) -[881 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54558 -[882 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421beb950 -[883 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[884 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[885 01-05 02:51:04.21 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 02:51:04.21 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 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[888 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42031c9b0, header 0xc421beb980 -[889 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[88a 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 -[88b 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -[88c 01-05 02:51:04.21 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 02:51:04.21 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 = [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -[88e 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel -[88f 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel version: 1.1.0 -[890 01-05 02:51:04.21 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=bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1,syscc=true,proposal=0xc42031c9b0,canname=lscc:1.1.0 -[891 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[892 01-05 02:51:04.21 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 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[894 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]Inside sendExecuteMessage. Message TRANSACTION -[895 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[896 01-05 02:51:04.21 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[897 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]sendExecuteMsg trigger event TRANSACTION -[898 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Move state message TRANSACTION -[899 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[89a 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[89b 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]sending state message TRANSACTION -[89c 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Received message TRANSACTION from shim -[89d 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[89e 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bfe64ffc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[89f 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [bfe64ffc]Sending GET_STATE -[8a0 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Received message GET_STATE from shim -[8a1 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[8a2 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [bfe64ffc]Received GET_STATE, invoking get state from ledger -[8a3 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8a4 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bfe64ffc] getting state for chaincode lscc, key exp02, channel businesschannel -[8a5 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[8a6 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bfe64ffc]Got state. Sending RESPONSE -[8a7 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [bfe64ffc]handleGetState serial send RESPONSE -[8a8 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Received message RESPONSE from shim -[8a9 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[8aa 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bfe64ffc]before send -[8ab 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [bfe64ffc]after send -[8ac 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [bfe64ffc]Received RESPONSE, communicated (state:ready) -[8ad 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [bfe64ffc]GetState received payload RESPONSE -[8ae 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Transaction completed. Sending COMPLETED -[8af 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Move state message COMPLETED -[8b0 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8b1 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]send state message COMPLETED -[8b2 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Received message COMPLETED from shim -[8b3 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8b4 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1]HandleMessage- COMPLETED. Notify -[8b5 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1, channelID:businesschannel -[8b6 01-05 02:51:04.22 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 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[8b8 01-05 02:51:04.22 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 02:51:04.22 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 [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -[8ba 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[8bb 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel chaincode id: name:"lscc" -[8bc 01-05 02:51:04.22 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 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1 channel id: businesschannel version: 1.1.0 -[8be 01-05 02:51:04.22 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=bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1,syscc=true,proposal=0xc42031c9b0,canname=escc:1.1.0 -[8bf 01-05 02:51:04.22 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 02:51:04.22 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 02:51:04.22 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 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]Inside sendExecuteMessage. Message TRANSACTION -[8c3 01-05 02:51:04.22 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 02:51:04.22 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 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bfe64ffc]sendExecuteMsg trigger event TRANSACTION -[8c6 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Move state message TRANSACTION -[8c7 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8c8 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8c9 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]sending state message TRANSACTION -[8ca 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Received message TRANSACTION from shim -[8cb 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8cc 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bfe64ffc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8cd 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[8ce 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[8cf 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Transaction completed. Sending COMPLETED -[8d0 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]Move state message COMPLETED -[8d1 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bfe64ffc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8d2 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bfe64ffc]send state message COMPLETED -[8d3 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bfe64ffc]Received message COMPLETED from shim -[8d4 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8d5 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1]HandleMessage- COMPLETED. Notify -[8d6 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1, channelID:businesschannel -[8d7 01-05 02:51:04.22 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 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8d9 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[8da 01-05 02:51:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bfe64ffc6b659c112f30de851c6c0998f728b0fbd3d0026a49cdb98ca1a16ea1] -[8db 01-05 02:51:04.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54558) -[8dc 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54560 -[8dd 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b6b410 -[8de 01-05 02:51:04.35 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 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8e0 01-05 02:51:04.35 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 02:51:04.35 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 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8e3 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42031d590, header 0xc421b6b440 -[8e4 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[8e5 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 -[8e6 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -[8e7 01-05 02:51:04.35 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 02:51:04.35 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 = [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -[8e9 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel -[8ea 01-05 02:51:04.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel version: 1.1.0 -[8eb 01-05 02:51:04.36 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=aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166,syscc=true,proposal=0xc42031d590,canname=lscc:1.1.0 -[8ec 01-05 02:51:04.36 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 02:51:04.36 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 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[8ef 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]Inside sendExecuteMessage. Message TRANSACTION -[8f0 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8f1 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8f2 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]sendExecuteMsg trigger event TRANSACTION -[8f3 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Move state message TRANSACTION -[8f4 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8f5 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8f6 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]sending state message TRANSACTION -[8f7 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Received message TRANSACTION from shim -[8f8 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8f9 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [aeb3e098]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8fa 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [aeb3e098]Sending GET_STATE -[8fb 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Received message GET_STATE from shim -[8fc 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[8fd 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [aeb3e098]Received GET_STATE, invoking get state from ledger -[8fe 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8ff 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [aeb3e098] getting state for chaincode lscc, key exp02, channel businesschannel -[900 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[901 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [aeb3e098]Got state. Sending RESPONSE -[902 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [aeb3e098]handleGetState serial send RESPONSE -[903 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Received message RESPONSE from shim -[904 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[905 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [aeb3e098]before send -[906 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [aeb3e098]after send -[907 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [aeb3e098]Received RESPONSE, communicated (state:ready) -[908 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [aeb3e098]GetState received payload RESPONSE -[909 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Transaction completed. Sending COMPLETED -[90a 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Move state message COMPLETED -[90b 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[90c 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]send state message COMPLETED -[90d 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Received message COMPLETED from shim -[90e 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[90f 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166]HandleMessage- COMPLETED. Notify -[910 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166, channelID:businesschannel -[911 01-05 02:51:04.36 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 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[913 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[914 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -[915 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[916 01-05 02:51:04.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel chaincode id: name:"lscc" -[917 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[918 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166 channel id: businesschannel version: 1.1.0 -[919 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166,syscc=true,proposal=0xc42031d590,canname=escc:1.1.0 -[91a 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[91b 01-05 02:51:04.37 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 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[91d 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]Inside sendExecuteMessage. Message TRANSACTION -[91e 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[91f 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[920 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [aeb3e098]sendExecuteMsg trigger event TRANSACTION -[921 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Move state message TRANSACTION -[922 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[923 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[924 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]sending state message TRANSACTION -[925 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Received message TRANSACTION from shim -[926 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[927 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [aeb3e098]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[928 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[929 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[92a 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Transaction completed. Sending COMPLETED -[92b 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]Move state message COMPLETED -[92c 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [aeb3e098]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[92d 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [aeb3e098]send state message COMPLETED -[92e 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [aeb3e098]Received message COMPLETED from shim -[92f 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e098]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[930 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166]HandleMessage- COMPLETED. Notify -[931 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166, channelID:businesschannel -[932 01-05 02:51:04.37 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 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[934 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[935 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [aeb3e0980fb38d1ac2c6838411bd174f0220ada84fdbf723d1c29ee2e0071166] -[936 01-05 02:51:04.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54560) -[937 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54562 -[938 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420368fc0 -[939 01-05 02:51:04.64 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 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[93b 01-05 02:51:04.64 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 02:51:04.64 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 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[93e 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4228a2780, header 0xc420368ff0 -[93f 01-05 02:51:04.64 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 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 -[941 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -[942 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[943 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -[944 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel -[945 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel version: 1.1.0 -[946 01-05 02:51:04.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374,syscc=true,proposal=0xc4228a2780,canname=lscc:1.1.0 -[947 01-05 02:51:04.65 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 02:51:04.65 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 02:51:04.65 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 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]Inside sendExecuteMessage. Message TRANSACTION -[94b 01-05 02:51:04.65 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 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[94d 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]sendExecuteMsg trigger event TRANSACTION -[94e 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Move state message TRANSACTION -[94f 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[950 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[951 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]sending state message TRANSACTION -[952 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Received message TRANSACTION from shim -[953 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[954 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c8383a03]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[955 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c8383a03]Sending GET_STATE -[956 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Received message GET_STATE from shim -[957 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[958 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c8383a03]Received GET_STATE, invoking get state from ledger -[959 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[95a 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8383a03] getting state for chaincode lscc, key exp02, channel businesschannel -[95b 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[95c 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c8383a03]Got state. Sending RESPONSE -[95d 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c8383a03]handleGetState serial send RESPONSE -[95e 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Received message RESPONSE from shim -[95f 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[960 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c8383a03]before send -[961 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c8383a03]after send -[963 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c8383a03]GetState received payload RESPONSE -[964 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Transaction completed. Sending COMPLETED -[962 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c8383a03]Received RESPONSE, communicated (state:ready) -[965 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Move state message COMPLETED -[966 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[967 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]send state message COMPLETED -[968 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Received message COMPLETED from shim -[969 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[96a 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374]HandleMessage- COMPLETED. Notify -[96b 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374, channelID:businesschannel -[96c 01-05 02:51:04.65 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 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[96e 01-05 02:51: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 -[96f 01-05 02:51: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 [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -[970 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[971 01-05 02:51:04.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel chaincode id: name:"lscc" -[972 01-05 02:51:04.65 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 02:51:04.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374 channel id: businesschannel version: 1.1.0 -[974 01-05 02:51:04.66 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=c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374,syscc=true,proposal=0xc4228a2780,canname=escc:1.1.0 -[975 01-05 02:51:04.66 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 02:51:04.66 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 02:51:04.66 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 02:51:04.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]Inside sendExecuteMessage. Message TRANSACTION -[979 01-05 02:51:04.66 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 02:51:04.67 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 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c8383a03]sendExecuteMsg trigger event TRANSACTION -[97c 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Move state message TRANSACTION -[97d 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[97e 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[97f 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]sending state message TRANSACTION -[980 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Received message TRANSACTION from shim -[981 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[982 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c8383a03]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[983 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[984 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[985 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Transaction completed. Sending COMPLETED -[986 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]Move state message COMPLETED -[987 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c8383a03]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[988 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c8383a03]send state message COMPLETED -[989 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c8383a03]Received message COMPLETED from shim -[98a 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[98b 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374]HandleMessage- COMPLETED. Notify -[98c 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374, channelID:businesschannel -[98d 01-05 02:51:04.67 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 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[98f 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[990 01-05 02:51:04.67 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 [c8383a032fa49e19257cd353bc0d7cdf985a15ee67c664f75002495770e71374] -[991 01-05 02:51:04.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54562) -[992 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54564 -[993 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224f46f0 -[994 01-05 02:51:04.88 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 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[996 01-05 02:51:04.88 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 02:51:04.88 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 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[999 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42373ecd0, header 0xc4224f4720 -[99a 01-05 02:51:04.88 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 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 -[99c 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -[99d 01-05 02:51:04.88 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 02:51:04.88 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 = [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -[99f 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel -[9a0 01-05 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel version: 1.1.0 -[9a1 01-05 02:51:04.88 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=349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8,syscc=true,proposal=0xc42373ecd0,canname=lscc:1.1.0 -[9a2 01-05 02:51:04.88 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 02:51:04.88 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 02:51:04.88 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 02:51:04.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]Inside sendExecuteMessage. Message TRANSACTION -[9a6 01-05 02:51:04.88 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 02:51:04.88 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 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]sendExecuteMsg trigger event TRANSACTION -[9a9 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Move state message TRANSACTION -[9aa 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9ab 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9ac 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]sending state message TRANSACTION -[9ad 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Received message TRANSACTION from shim -[9ae 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9af 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [349f981b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9b0 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Transaction completed. Sending COMPLETED -[9b1 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Move state message COMPLETED -[9b2 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[9b3 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]send state message COMPLETED -[9b4 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Received message COMPLETED from shim -[9b5 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[9b6 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8]HandleMessage- COMPLETED. Notify -[9b7 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8, channelID:businesschannel -[9b8 01-05 02:51:04.89 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 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[9ba 01-05 02:51:04.89 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 02:51:04.89 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 [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -[9bc 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[9bd 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel chaincode id: name:"lscc" -[9be 01-05 02:51:04.89 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 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8 channel id: businesschannel version: 1.1.0 -[9c0 01-05 02:51: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=349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8,syscc=true,proposal=0xc42373ecd0,canname=escc:1.1.0 -[9c1 01-05 02:51: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 -[9c2 01-05 02:51:04.89 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 02:51: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 -[9c4 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]Inside sendExecuteMessage. Message TRANSACTION -[9c5 01-05 02:51: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... -[9c6 01-05 02:51: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... -[9c7 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [349f981b]sendExecuteMsg trigger event TRANSACTION -[9c8 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Move state message TRANSACTION -[9c9 01-05 02:51:04.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9ca 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9cb 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]sending state message TRANSACTION -[9cc 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Received message TRANSACTION from shim -[9cd 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9ce 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [349f981b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9cf 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[9d0 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[9d1 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Transaction completed. Sending COMPLETED -[9d2 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]Move state message COMPLETED -[9d3 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [349f981b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[9d4 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [349f981b]send state message COMPLETED -[9d5 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [349f981b]Received message COMPLETED from shim -[9d6 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[9d7 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8]HandleMessage- COMPLETED. Notify -[9d8 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8, channelID:businesschannel -[9d9 01-05 02:51:04.90 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 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[9db 01-05 02:51:04.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[9dc 01-05 02:51: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 [349f981b08eb0958d3269907f783840f9348d6dcc4b3236bc064f996a665bfc8] -[9dd 01-05 02:51: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:54564) -[9de 01-05 02:51:05.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54566 -[9df 01-05 02:51:05.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422660870 -[9e0 01-05 02:51:05.10 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 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[9e2 01-05 02:51:05.10 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 02:51:05.10 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 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[9e5 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c40d70, header 0xc4226608a0 -[9e6 01-05 02:51:05.10 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 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 -[9e8 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -[9e9 01-05 02:51:05.10 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 02:51:05.10 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 = [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -[9eb 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel -[9ec 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel version: 1.1.0 -[9ed 01-05 02:51:05.10 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=d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445,syscc=true,proposal=0xc421c40d70,canname=lscc:1.1.0 -[9ee 01-05 02:51:05.10 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 02:51:05.10 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 02:51:05.10 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 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]Inside sendExecuteMessage. Message TRANSACTION -[9f2 01-05 02:51:05.10 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 02:51:05.10 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 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]sendExecuteMsg trigger event TRANSACTION -[9f5 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Move state message TRANSACTION -[9f6 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[9f7 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[9f8 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]sending state message TRANSACTION -[9f9 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message TRANSACTION from shim -[9fa 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[9fb 01-05 02:51:05.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8a7b15b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[9fc 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [d8a7b15b]Sending GET_STATE_BY_RANGE -[9fd 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message GET_STATE_BY_RANGE from shim -[9fe 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -[9ff 01-05 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -[a01 01-05 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -[a02 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a04 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -[a05 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8a7b15b]handleGetStateByRange serial send RESPONSE -[a06 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message RESPONSE from shim -[a07 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[a08 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]before send -[a09 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]after send -[a0a 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8a7b15b]Received RESPONSE, communicated (state:ready) -[a0b 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [d8a7b15b]Received RESPONSE. Successfully got range -[a0c 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [d8a7b15b]Sending QUERY_STATE_CLOSE -[a0d 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message QUERY_STATE_CLOSE from shim -[a0e 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -[a0f 01-05 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -[a11 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a12 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -[a13 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8a7b15b]handleQueryStateClose serial send RESPONSE -[a14 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message RESPONSE from shim -[a15 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[a16 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]before send -[a17 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8a7b15b]after send -[a18 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8a7b15b]Received RESPONSE, communicated (state:ready) -[a19 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [d8a7b15b]Received RESPONSE. Successfully got range -[a1a 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Transaction completed. Sending COMPLETED -[a1b 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Move state message COMPLETED -[a1c 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a1d 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]send state message COMPLETED -[a1e 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message COMPLETED from shim -[a1f 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a20 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445]HandleMessage- COMPLETED. Notify -[a21 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445, channelID:businesschannel -[a22 01-05 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[a24 01-05 02:51:05.11 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 02:51:05.11 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 [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -[a26 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[a27 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel chaincode id: name:"lscc" -[a28 01-05 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445 channel id: businesschannel version: 1.1.0 -[a2a 01-05 02:51:05.11 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=d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445,syscc=true,proposal=0xc421c40d70,canname=escc:1.1.0 -[a2b 01-05 02:51:05.11 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 02:51:05.11 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 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]Inside sendExecuteMessage. Message TRANSACTION -[a2f 01-05 02:51:05.11 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 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8a7b15b]sendExecuteMsg trigger event TRANSACTION -[a32 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Move state message TRANSACTION -[a33 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a34 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a35 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]sending state message TRANSACTION -[a36 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Received message TRANSACTION from shim -[a37 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a38 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8a7b15b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a39 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[a3a 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[a3b 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Transaction completed. Sending COMPLETED -[a3c 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]Move state message COMPLETED -[a3d 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8a7b15b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a3e 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8a7b15b]send state message COMPLETED -[a3f 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8a7b15b]Received message COMPLETED from shim -[a40 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a41 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445]HandleMessage- COMPLETED. Notify -[a42 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445, channelID:businesschannel -[a43 01-05 02:51:05.11 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 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[a45 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[a46 01-05 02:51:05.11 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 [d8a7b15b654a3c03d97039012a9ab40567eef7601b02233223f35399e1026445] -[a47 01-05 02:51:05.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54566) -[a48 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54568 -[a49 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422840540 -[a4a 01-05 02:51:05.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 -[a4b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[a4c 01-05 02:51:05.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} -[a4d 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[a4e 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[a4f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c41a40, header 0xc422840570 -[a50 01-05 02:51:05.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:"qscc" -[a51 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 -[a52 01-05 02:51:05.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 = [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -[a53 01-05 02:51:05.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 -[a54 01-05 02:51:05.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 = [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -[a55 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel -[a56 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel version: 1.1.0 -[a57 01-05 02:51:05.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=qscc,version=1.1.0,txid=cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72,syscc=true,proposal=0xc421c41a40,canname=qscc:1.1.0 -[a58 01-05 02:51:05.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) : qscc:1.1.0 -[a59 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[a5a 01-05 02:51:05.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: qscc:1.1.0 -[a5b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]Inside sendExecuteMessage. Message TRANSACTION -[a5c 01-05 02:51:05.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... -[a5d 01-05 02:51:05.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... -[a5e 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]sendExecuteMsg trigger event TRANSACTION -[a5f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Move state message TRANSACTION -[a60 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a61 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a62 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]sending state message TRANSACTION -[a63 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Received message TRANSACTION from shim -[a64 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a65 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cee46bbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a66 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -[a67 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Transaction completed. Sending COMPLETED -[a68 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Move state message COMPLETED -[a69 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a6a 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]send state message COMPLETED -[a6b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Received message COMPLETED from shim -[a6c 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a6d 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72]HandleMessage- COMPLETED. Notify -[a6e 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72, channelID:businesschannel -[a6f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a70 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[a71 01-05 02:51:05.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 -[a72 01-05 02:51:05.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 [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -[a73 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[a74 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel chaincode id: name:"qscc" -[a75 01-05 02:51:05.52 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 -[a76 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72 channel id: businesschannel version: 1.1.0 -[a77 01-05 02:51:05.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=cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72,syscc=true,proposal=0xc421c41a40,canname=escc:1.1.0 -[a78 01-05 02:51:05.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 -[a79 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Entry -[a7a 01-05 02:51:05.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 -[a7b 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]Inside sendExecuteMessage. Message TRANSACTION -[a7c 01-05 02:51:05.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... -[a7d 01-05 02:51:05.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... -[a7e 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cee46bbd]sendExecuteMsg trigger event TRANSACTION -[a7f 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Move state message TRANSACTION -[a80 01-05 02:51:05.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[a81 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[a82 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]sending state message TRANSACTION -[a83 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Received message TRANSACTION from shim -[a84 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[a85 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cee46bbd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[a86 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[a87 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[a88 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Transaction completed. Sending COMPLETED -[a89 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]Move state message COMPLETED -[a8a 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cee46bbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[a8b 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cee46bbd]send state message COMPLETED -[a8c 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cee46bbd]Received message COMPLETED from shim -[a8d 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[a8e 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72]HandleMessage- COMPLETED. Notify -[a8f 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72, channelID:businesschannel -[a90 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU Exit -[a91 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[a92 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[a93 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cee46bbdf25615326dfb928c207a7bb75a881528c75045dac78563ec53530b72] -[a94 01-05 02:51:05.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54568) -[a95 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -[a96 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -[a97 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[a98 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[a99 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4232fae40 env 0xc422a4c090 txn 0 -[a9a 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422a4c090 -[a9b 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -[a9c 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[a9d 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[a9e 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP 53a7c08d830460324251bfa2e24760cd78c9e68251944a3d743eccee7b7c796d} -[a9f 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[aa0 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[aa1 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4228c8800, header channel_header:"\010\003\032\014\010\227\320\273\322\005\020\300\266\310\240\002\"\017businesschannel*@35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403:\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\030\273l\010\262\321\251v\205\014\225\233J\017\305\222y\035\205\350B\342*\010\333" -[aa2 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[aa3 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[aa4 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[aa5 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[aa6 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -[aa7 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[aa8 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for env 0xc422a4c090 envbytes 0xc421a72400 -[aa9 01-05 02:51:05.66 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 = [8ca8365b-6af4-4e62-8334-3c2be5290d53] -[aaa 01-05 02:51:05.66 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 -[aab 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [8ca8365b-6af4-4e62-8334-3c2be5290d53] -[aac 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC starts for envbytes 0xc421a72400 -[aad 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[aae 01-05 02:51:05.66 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 = [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -[aaf 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] validateTx.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=08f9414e-b992-4987-834f-360a36c07160,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[ab0 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 chaindID businesschannel -[ab1 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[ab2 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[ab3 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[ab4 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [08f9414e]Inside sendExecuteMessage. Message TRANSACTION -[ab5 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[ab6 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [08f9414e]sendExecuteMsg trigger event TRANSACTION -[ab7 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [08f9414e]Move state message TRANSACTION -[ab8 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [08f9414e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[ab9 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[aba 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [08f9414e]sending state message TRANSACTION -[abb 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]Received message TRANSACTION from shim -[abc 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [08f9414e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[abd 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [08f9414e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[abe 01-05 02:51:05.66 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[abf 01-05 02:51:05.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[ac0 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[ac1 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]Transaction completed. Sending COMPLETED -[ac2 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]Move state message COMPLETED -[ac3 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [08f9414e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[ac4 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [08f9414e]send state message COMPLETED -[ac5 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [08f9414e]Received message COMPLETED from shim -[ac6 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [08f9414e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[ac7 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [08f9414e-b992-4987-834f-360a36c07160]HandleMessage- COMPLETED. Notify -[ac8 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:08f9414e-b992-4987-834f-360a36c07160, channelID:businesschannel -[ac9 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/chaincode] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[aca 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.Done -> DEBU Done with transaction simulation / query execution [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] -[acb 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU VSCCValidateTxForCC completes for envbytes 0xc421a72400 -[acc 01-05 02:51:05.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes for env 0xc422a4c090 envbytes 0xc421a72400 -[acd 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4232fae40 env 0xc422a4c090 txn 0 -[ace 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[acf 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[ad0 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -[ad1 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[ad2 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -[ad3 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[ad4 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[ad5 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -[ad6 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -[ad7 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -[ad8 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -[ad9 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[ada 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[adb 01-05 02:51:05.69 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 [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] marked as valid by state validator -[adc 01-05 02:51:05.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[add 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[ade 01-05 02:51:05.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[adf 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -[ae0 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -[ae1 01-05 02:51:05.71 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{0x97, 0xdc, 0xe2, 0x89, 0x84, 0x47, 0xe2, 0x45, 0x40, 0xea, 0x20, 0xe4, 0xf, 0x22, 0x6b, 0x86, 0x1e, 0x9c, 0x6d, 0x3a, 0xe1, 0x5e, 0x59, 0xbd, 0xd4, 0x2c, 0x25, 0x5b, 0x47, 0x73, 0xa2, 0xfc} txOffsets= -txId=35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 locPointer=offset=70, bytesLength=2921 +[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 ] -[ae2 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to index -[ae3 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55594, bytesLength=2921] for tx number:[0] ID: [35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403] to blockNumTranNum index -[ae4 01-05 02:51:05.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=[60310], isChainEmpty=[false], lastBlockNumber=[6] -[ae5 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -[ae6 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -[ae7 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -[ae8 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -[ae9 01-05 02:51:05.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[aea 01-05 02:51:05.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 -[aeb 01-05 02:51:05.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}] -[aec 01-05 02:51:05.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}] -[aed 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[aee 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -[aef 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -[af0 01-05 02:51:05.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 [6] -[af1 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[af2 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 35d39bdd6131564e85e9727f1a67992b6965156064db2f24da14e4a7c5a7e403 -[af3 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[af4 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[af5 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[af6 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[af7 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[af8 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[af9 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[afa 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[afb 01-05 02:51:05.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[afc 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entering: Got request from 172.18.0.7:54570 -[afd 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4229cf320 -[afe 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[aff 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[b00 01-05 02:51:05.76 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 02:51:05.76 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 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[b03 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4236cb360, header 0xc4229cf350 -[b04 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[b05 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 -[b06 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -[b07 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[b08 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -[b09 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel -[b0a 01-05 02:51:05.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel version: 1.1.0 -[b0b 01-05 02:51:05.76 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=40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20,syscc=true,proposal=0xc4236cb360,canname=qscc:1.1.0 -[b0c 01-05 02:51:05.76 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 02:51:05.76 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 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.1.0 -[b0f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]Inside sendExecuteMessage. Message TRANSACTION -[b10 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[b11 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[b12 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]sendExecuteMsg trigger event TRANSACTION -[b13 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Move state message TRANSACTION -[b14 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[b15 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[b16 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]sending state message TRANSACTION -[b17 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Received message TRANSACTION from shim -[b18 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[b19 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40a7e070]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[b1a 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -[b1b 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[b1c 01-05 02:51:05.77 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] -[b1d 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34230], Going to peek [8] bytes -[b1e 01-05 02:51:05.77 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]} -[b1f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Transaction completed. Sending COMPLETED -[b20 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Move state message COMPLETED -[b21 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[b22 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]send state message COMPLETED -[b23 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Received message COMPLETED from shim -[b24 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[b25 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20]HandleMessage- COMPLETED. Notify -[b26 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20, channelID:businesschannel -[b27 01-05 02:51:05.77 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 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[b29 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[b2a 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -[b2b 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[b2c 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel chaincode id: name:"qscc" -[b2d 01-05 02:51:05.77 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 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20 channel id: businesschannel version: 1.1.0 -[b2f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20,syscc=true,proposal=0xc4236cb360,canname=escc:1.1.0 -[b30 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[b31 01-05 02:51:05.77 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 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[b33 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]Inside sendExecuteMessage. Message TRANSACTION -[b34 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[b35 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[b36 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.Execute.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [40a7e070]sendExecuteMsg trigger event TRANSACTION -[b37 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Move state message TRANSACTION -[b38 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[b39 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[b3a 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]sending state message TRANSACTION -[b3b 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Received message TRANSACTION from shim -[b3c 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[b3d 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [40a7e070]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[b3e 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[b3f 01-05 02:51:05.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[b40 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Transaction completed. Sending COMPLETED -[b41 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]Move state message COMPLETED -[b42 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40a7e070]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[b43 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40a7e070]send state message COMPLETED -[b44 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [40a7e070]Received message COMPLETED from shim -[b45 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[b46 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20]HandleMessage- COMPLETED. Notify -[b47 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20, channelID:businesschannel -[b48 01-05 02:51:05.78 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 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[b4a 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[b4b 01-05 02:51:05.78 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 [40a7e070636726241b98e02f86a8d6aaadb96b130581bd7d3afc5024a2f71e20] -[b4c 01-05 02:51:05.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit: request from%!(EXTRA string=172.18.0.7:54570) -[b4d 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -[b4e 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -[b4f 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[b50 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[b51 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420324d60 env 0xc4224f50e0 txn 0 -[b52 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4224f50e0 -[b53 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -[b54 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[b55 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[b56 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 00542117008370af8ca3efe5885626327837cb6f5c0049e2d8439fca3b9de7e6} -[b57 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[b58 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[b59 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422a00000, header channel_header:"\010\001\032\006\010\242\320\273\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\034:\216-E\036PF\010\371\0175\317hU\341*\212d~+\262<\365" -[b5a 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for chain businesschannel -[b5b 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[b5c 01-05 02:51:14.85 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 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[b5e 01-05 02:51:14.85 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 02:51:14.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 02:51:14.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 02:51:14.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 02:51:14.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 -[b63 01-05 02:51:14.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 02:51:14.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 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[b66 01-05 02:51:14.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 -[b67 01-05 02:51:14.85 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 -[b68 01-05 02:51:14.85 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 02:51:14.85 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 02:51:14.85 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 -[b6b 01-05 02:51:14.85 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[b6c 01-05 02:51:14.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 02:51:14.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 -[b6e 01-05 02:51:14.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 -[b6f 01-05 02:51:14.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 -[b70 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -[b71 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -[b73 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[b74 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -[b75 01-05 02:51:14.86 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 02:51:14.86 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 -[b77 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -[b78 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -[b79 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b7a 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b7b 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b7c 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b7d 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[b7e 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b7f 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b80 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b81 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b82 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b83 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b84 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b85 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b86 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b87 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b88 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b89 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[b8a 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[b8b 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[b8c 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[b8d 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[b8e 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[b8f 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[b90 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[b91 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[b92 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[b93 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[b94 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[b95 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[b96 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[b97 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[b98 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[b99 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[b9a 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[b9b 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[b9c 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[b9d 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[b9e 01-05 02:51:14.86 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 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[ba0 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[ba1 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[ba2 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[ba3 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[ba4 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[ba5 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[ba6 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[ba7 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[ba8 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[ba9 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[baa 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bab 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[bac 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[bad 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[bae 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[baf 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[bb0 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bb1 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[bb2 01-05 02:51:14.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[bb3 01-05 02:51:14.87 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[bb4 01-05 02:51:14.87 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 02:51:14.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 -[bb6 01-05 02:51:14.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 -[bb7 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[bb8 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[bb9 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[bba 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[bbb 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[bbc 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[bbd 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[bbe 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[bbf 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[bc0 01-05 02:51:14.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 -[bc1 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[bc2 01-05 02:51:14.89 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[bc3 01-05 02:51:14.89 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 02:51:14.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 -[bc5 01-05 02:51:14.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 -[bc6 01-05 02:51:14.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 -[bc7 01-05 02:51:14.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 -[bc8 01-05 02:51:14.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 -[bc9 01-05 02:51:14.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 -[bca 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[bcb 01-05 02:51:14.90 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 -[bcc 01-05 02:51:14.90 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 -[bcd 01-05 02:51:14.90 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 -[bce 01-05 02:51:14.90 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 -[bcf 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[bd0 01-05 02:51:14.90 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 -[bd1 01-05 02:51:14.90 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 -[bd2 01-05 02:51:14.90 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 -[bd3 01-05 02:51:14.90 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 -[bd4 01-05 02:51:14.90 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 -[bd5 01-05 02:51:14.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 -[bd6 01-05 02:51:14.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 -[bd7 01-05 02:51:14.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 -[bd8 01-05 02:51:14.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 -[bd9 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[bda 01-05 02:51:14.90 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 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[bdc 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[bdd 01-05 02:51:14.90 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[bde 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[bdf 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[be0 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[be1 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[be2 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[be3 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[be4 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[be5 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[be6 01-05 02:51:14.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[be7 01-05 02:51:14.91 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 02:51:14.93 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[be9 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[bea 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[beb 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[bec 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -[bed 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[bee 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[bef 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420324d60 env 0xc4224f50e0 txn 0 -[bf0 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[bf1 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[bf2 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[bf3 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -[bf4 01-05 02:51:14.95 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 02:51:14.95 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 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[bf7 01-05 02:51:14.95 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 02:51:14.95 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 02:51:14.95 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 02:51:14.95 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 02:51:14.95 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 02:51:14.95 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[bfd 01-05 02:51:14.95 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 02:51:14.95 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 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[c00 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[c01 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[c02 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[c03 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c04 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[c05 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[c06 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[c07 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[c08 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[c09 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[c0a 01-05 02:51:14.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx.isResConfigCapabilityOn.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c0b 01-05 02:51:14.96 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 02:51:14.96 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 02:51:14.96 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 02:51:14.96 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 02:51:14.96 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 02:51:14.96 UTC] [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 02:51:14.96 UTC] [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 02:51:14.96 UTC] [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 02:51:14.96 UTC] [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 02:51:14.96 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 02:51:14.96 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 02:51:14.96 UTC] [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 02:51:14.96 UTC] [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 02:51:14.96 UTC] [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 02:51:14.96 UTC] [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 02:51:14.96 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 02:51:14.96 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 02:51:14.97 UTC] [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 02:51:14.97 UTC] [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 02:51:14.97 UTC] [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 02:51:14.97 UTC] [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 02:51:14.97 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 02:51:14.97 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 02:51:15.00 UTC] [github.com/hyperledger/fabric/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 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.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 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c27 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c28 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c29 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c2a 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c2b 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c2c 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c2d 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c2e 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c2f 01-05 02:51:15.01 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.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 -[c30 01-05 02:51:15.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: [Policy] /Channel/Orderer/Admins -[c31 01-05 02:51:15.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 -[c32 01-05 02:51:15.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 -[c33 01-05 02:51:15.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 -[c34 01-05 02:51:15.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 -[c35 01-05 02:51:15.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/AnchorPeers -[c36 01-05 02:51:15.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 -[c37 01-05 02:51:15.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 -[c38 01-05 02:51:15.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 -[c39 01-05 02:51:15.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/Org3MSP -[c3a 01-05 02:51:15.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/Org3MSP/MSP -[c3b 01-05 02:51:15.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/Org3MSP/Admins -[c3c 01-05 02:51:15.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/Org3MSP/Readers -[c3d 01-05 02:51:15.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/Org3MSP/Writers -[c3e 01-05 02:51:15.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 -[c3f 01-05 02:51:15.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 -[c40 01-05 02:51:15.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 -[c41 01-05 02:51:15.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 -[c42 01-05 02:51:15.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/Readers -[c43 01-05 02:51:15.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 -[c44 01-05 02:51:15.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 -[c45 01-05 02:51:15.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 -[c46 01-05 02:51:15.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 -[c47 01-05 02:51:15.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 -[c48 01-05 02:51:15.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 -[c49 01-05 02:51:15.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 -[c4a 01-05 02:51:15.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/HashingAlgorithm -[c4b 01-05 02:51:15.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/Consortium -[c4c 01-05 02:51:15.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/BlockDataHashingStructure -[c4d 01-05 02:51:15.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/Writers -[c4e 01-05 02:51:15.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/Admins -[c4f 01-05 02:51:15.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 -[c50 01-05 02:51:15.08 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 02:51:15.08 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 02:51:15.08 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 02:51:15.08 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 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[c55 01-05 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[c56 01-05 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[c57 01-05 02:51:15.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -[c58 01-05 02:51:15.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 [7] -[c59 01-05 02:51:15.12 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{0xce, 0x93, 0x4f, 0xbd, 0x9e, 0x8f, 0x46, 0x9e, 0xe8, 0x99, 0xbc, 0xa0, 0x6c, 0x19, 0xb9, 0xe3, 0x95, 0x93, 0xe9, 0xa6, 0x5, 0xd5, 0x4b, 0x7f, 0x4e, 0x5d, 0xd1, 0x32, 0x6c, 0x50, 0x6f, 0x92} txOffsets= -txId= locPointer=offset=71, bytesLength=19402 +[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 ] -[c5a 01-05 02:51:15.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=60381, bytesLength=19402] for tx ID: [] to index -[c5b 01-05 02:51:15.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=60381, bytesLength=19402] for tx number:[0] ID: [] to blockNumTranNum index -[c5c 01-05 02:51:15.13 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=[81579], isChainEmpty=[false], lastBlockNumber=[7] -[c5d 01-05 02:51:15.13 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 02:51:15.13 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 02:51:15.13 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 02:51:15.13 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 02:51:15.13 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 02:51:15.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 -[c63 01-05 02:51:15.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}] -[c64 01-05 02:51:15.13 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 02:51:15.13 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 02:51:15.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 [7] with [1] transactions -[c67 01-05 02:51:15.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 -[c68 01-05 02:51:15.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 [7] -[c69 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[c6a 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[c6b 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[c6c 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[c6d 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[c6e 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[c6f 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[c70 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[c71 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[c72 01-05 02:51:15.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[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