Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CouchDB queries are extremely slow after many queries are made #4835

Open
luca-simonetti opened this issue May 3, 2024 · 6 comments
Open
Labels

Comments

@luca-simonetti
Copy link

Description

We have a chaincode which mints a great amount of tokens.
These tokens contain additional information which sometimes we need to reconstruct.
There might be some 100.000 tokens. Each of them having 100 couch keys associated to it
Our operation consists in reading these 100.000 tokens, and each call iterates over 100 keys with a grand total of 10.000.000 queries to couchdb in this case.
After one hour of queries everything's smooth with 200-400ms per TOKEN
After that the situation degrades quickly and we are left with one token request per minute or worse every two minutes: which abruptly ends in a DEADLINE_EXCEEDED error.

Steps to reproduce

  1. make 100.000 requests to a chaincode
  2. wait.

to help this is the chaincode function we're calling 100.000 times

func (c *xxxxx) Token(ctx contractapi.TransactionContextInterface, tokenId string) (string, error) {

	token, err := GetTokenData(ctx, tokenId)
	if err != nil {
		return "", err
	}

	tokenxxxxx := xxxxxx
	iterator, err := ctx.GetStub().GetStateByPartialCompositeKey(PrefixTokenxxxxxx, []string{tokenId})
	if err != nil {
		return "", fmt.Errorf("error creating asset chaincode: %v", err)
	}
	for iterator.HasNext() {
		queryResponse, err := iterator.Next()
		if err != nil {
			return "", err
		}
		// Recupero il tokenId
		_, compositeKeyParts, err := ctx.GetStub().SplitCompositeKey(queryResponse.Key)
		if err != nil {
			return "", err
		}

		/// OTHER CODE REDACTED BUT OF NO CONCERN
	}
	_ = iterator.Close()
	resultByte, err := json.Marshal(tokenWithxxxxxxx)
	return string(resultByte), nil
}
@denyeart
Copy link
Contributor

denyeart commented May 4, 2024

Could you add debug logging to the peer and reproduce. Provide the log snippet showing exactly where the slowdown is. Also provide the Couchdb log.

For peer add debug logging with the env variable:

FABRIC_LOGGING_SPEC=info:endorser,chaincode,chaincode.platform,kvledger,lockbasedtxmgr,ledgerstorage,statecouchdb,couchdb=debug

@luca-simonetti
Copy link
Author

luca-simonetti commented May 6, 2024

Here's a log from an early request log, when system is fast:

Screenshot 2024-05-06 alle 16 45 00

and here's a request from when the system is getting slower:
Screenshot 2024-05-06 alle 16 47 18

This was in a time frame of 45 minutes, meaning that after 45 minutes a single request took from 6ms (450-456) to 30ms (661, 691) which is like 5 times more.
This kind of increase in time is constant and seams like it's due to the connection to couchdb where the system at the beginning takes 3ms (half of the total time) and later on takes 21ms which is 70% of the time.

The support from couchdb said that this might be due to how the http transport is confgured.

@denyeart
Copy link
Contributor

denyeart commented May 6, 2024

It will help to compare the timings in the peer log and couchdb log. Can you provide a snippet from both peer and couchdb logs for a single request (rather than a screenshot). It would help to isolate an even slower request (small 30ms delays are often indistinguishable from noise).

@luca-simonetti
Copy link
Author

luca-simonetti commented May 7, 2024

this is the complete log of a single request:

�[36m2024-05-06 14:58:02.359 UTC 3051a5 DEBU�[0m [endorser] �[36;1mProcessProposal�[0m -> request from 10.20.2.15:58362
�[36m2024-05-06 14:58:02.359 UTC 3051a6 DEBU�[0m [endorser] �[36;1mValidate�[0m -> creator is valid channel=trading txID=23fd4716 mspID=Org2MSP
�[36m2024-05-06 14:58:02.360 UTC 3051a7 DEBU�[0m [endorser] �[36;1mValidate�[0m -> signature is valid channel=trading txID=23fd4716 mspID=Org2MSP
�[36m2024-05-06 14:58:02.362 UTC 3051a8 DEBU�[0m [lockbasedtxmgr] �[36;1mNewTxSimulator�[0m -> constructing new tx simulator
�[36m2024-05-06 14:58:02.362 UTC 3051a9 DEBU�[0m [lockbasedtxmgr] �[36;1mnewQueryExecutor�[0m -> constructing new query executor txid = [23fd4716181c0d51a33e2052eaf4a4804df927a2a964f4c2a25a170fd1fab498]
�[36m2024-05-06 14:58:02.362 UTC 3051aa DEBU�[0m [lockbasedtxmgr] �[36;1mnewTxSimulator�[0m -> constructing new tx simulator txid = [23fd4716181c0d51a33e2052eaf4a4804df927a2a964f4c2a25a170fd1fab498]
�[36m2024-05-06 14:58:02.362 UTC 3051ab DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=_lifecycle, key=namespaces/fields/t2804a/Sequence
�[36m2024-05-06 14:58:02.362 UTC 3051ac DEBU�[0m [chaincode] �[36;1mCheckInvocation�[0m -> [23fd4716] getting chaincode data for t2804a on channel trading
�[36m2024-05-06 14:58:02.362 UTC 3051ad DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=_lifecycle, key=namespaces/fields/t2804a/Sequence
�[36m2024-05-06 14:58:02.362 UTC 3051ae DEBU�[0m [chaincode] �[36;1mExecute�[0m -> Entry
�[36m2024-05-06 14:58:02.363 UTC 3051af DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.363 UTC 3051b0 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.363 UTC 3051b1 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �token�1176�, channel trading
�[36m2024-05-06 14:58:02.363 UTC 3051b2 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�token�1176�
�[36m2024-05-06 14:58:02.363 UTC 3051b3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�token�1176�]
�[36m2024-05-06 14:58:02.363 UTC 3051b4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.363 UTC 3051b5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00token%001176%00?attachments=true
�[36m2024-05-06 14:58:02.394 UTC 3051b6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.394 UTC 3051b7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.394 UTC 3051b8 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.395 UTC 3051b9 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready
�[36m2024-05-06 14:58:02.395 UTC 3051ba DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE_BY_RANGE from chaincode
�[36m2024-05-06 14:58:02.395 UTC 3051bb DEBU�[0m [statecouchdb] �[36;1mGetStateRangeScanIteratorWithPagination�[0m -> Entering GetStateRangeScanIteratorWithPagination namespace: t2804a  startKey: �piece�1176�  endKey: �piece�1176��  pageSize: 0
�[36m2024-05-06 14:58:02.395 UTC 3051bc DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Entering ReadDocRange()  startKey=�piece�1176�, endKey=�piece�1176��
�[36m2024-05-06 14:58:02.395 UTC 3051bd DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.395 UTC 3051be DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/_all_docs?attachments=true&endkey=%22%5Cu0000piece%5Cu00001176%5Cu0000%F4%8F%BF%BF%22&include_docs=true&inclusive_end=false&limit=1001&startkey=%22%5Cu0000piece%5Cu00001176%5Cu0000%22
�[36m2024-05-06 14:58:02.438 UTC 3051bf DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.438 UTC 3051c0 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] HTTP Response: HTTP/1.1 200 OK | Transfer-Encoding: chunked | Cache-Control: must-revalidate | Content-Type: application/json | Date: Mon, 06 May 2024 14:58:02 GMT | Server: CouchDB/3.3.3 (Erlang OTP/24) | X-Couch-Request-Id: 9a14036f89 | X-Couchdb-Body-Time: 0 |  | 
�[36m2024-05-06 14:58:02.522 UTC 3051c1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=HEAD  url=http://10.0.0.7:5984  dbName=
�[36m2024-05-06 14:58:02.522 UTC 3051c2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984
�[36m2024-05-06 14:58:02.522 UTC 3051c3 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=HEAD  url=http://10.0.0.7:5984  dbName=
�[36m2024-05-06 14:58:02.522 UTC 3051c4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984
�[36m2024-05-06 14:58:02.526 UTC 3051c5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.526 UTC 3051c6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.636 UTC 3051c7 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Total Rows: 1000
�[36m2024-05-06 14:58:02.636 UTC 3051c8 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1123694�
�[36m2024-05-06 14:58:02.636 UTC 3051c9 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1123695�
�[36m2024-05-06 14:58:02.636 UTC 3051ca DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1340565�
�[36m2024-05-06 14:58:02.636 UTC 3051cb DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1343765�
�[36m2024-05-06 14:58:02.636 UTC 3051cc DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1360084�
�[36m2024-05-06 14:58:02.636 UTC 3051cd DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1363284�
�[36m2024-05-06 14:58:02.636 UTC 3051ce DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1657398�
�[36m2024-05-06 14:58:02.636 UTC 3051cf DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1660599�
�[36m2024-05-06 14:58:02.636 UTC 3051d0 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1931981�
�[36m2024-05-06 14:58:02.636 UTC 3051d1 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�1935181�
�[36m2024-05-06 14:58:02.636 UTC 3051d2 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2016810�
�[36m2024-05-06 14:58:02.636 UTC 3051d3 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2020010�
�[36m2024-05-06 14:58:02.636 UTC 3051d4 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2178421�
�[36m2024-05-06 14:58:02.636 UTC 3051d5 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2181621�
�[36m2024-05-06 14:58:02.636 UTC 3051d6 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2661057�
�[36m2024-05-06 14:58:02.637 UTC 3051d7 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2664257�
�[36m2024-05-06 14:58:02.637 UTC 3051d8 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2768000�
�[36m2024-05-06 14:58:02.637 UTC 3051d9 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�2771200�
�[36m2024-05-06 14:58:02.637 UTC 3051da DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3016954�
�[36m2024-05-06 14:58:02.637 UTC 3051db DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3020155�
�[36m2024-05-06 14:58:02.637 UTC 3051dc DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3153642�
�[36m2024-05-06 14:58:02.637 UTC 3051dd DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3153643�
�[36m2024-05-06 14:58:02.637 UTC 3051de DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3233537�
�[36m2024-05-06 14:58:02.637 UTC 3051df DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3233538�
�[36m2024-05-06 14:58:02.637 UTC 3051e0 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�354188�
�[36m2024-05-06 14:58:02.637 UTC 3051e1 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�357388�
�[36m2024-05-06 14:58:02.637 UTC 3051e2 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3732014�
�[36m2024-05-06 14:58:02.637 UTC 3051e3 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3732015�
�[36m2024-05-06 14:58:02.637 UTC 3051e4 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3872040�
�[36m2024-05-06 14:58:02.637 UTC 3051e5 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3872041�
�[36m2024-05-06 14:58:02.637 UTC 3051e6 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3923471�
�[36m2024-05-06 14:58:02.637 UTC 3051e7 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�3926671�
�[36m2024-05-06 14:58:02.637 UTC 3051e8 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�407564�
�[36m2024-05-06 14:58:02.637 UTC 3051e9 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4085549�
�[36m2024-05-06 14:58:02.637 UTC 3051ea DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4088748�
�[36m2024-05-06 14:58:02.637 UTC 3051eb DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�410764�
�[36m2024-05-06 14:58:02.637 UTC 3051ec DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4348020�
�[36m2024-05-06 14:58:02.637 UTC 3051ed DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4351220�
�[36m2024-05-06 14:58:02.637 UTC 3051ee DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4426064�
�[36m2024-05-06 14:58:02.637 UTC 3051ef DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4429264�
�[36m2024-05-06 14:58:02.637 UTC 3051f0 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4589651�
�[36m2024-05-06 14:58:02.637 UTC 3051f1 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�4589652�
�[36m2024-05-06 14:58:02.637 UTC 3051f2 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�472724�
�[36m2024-05-06 14:58:02.637 UTC 3051f3 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�475925�
�[36m2024-05-06 14:58:02.637 UTC 3051f4 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5018973�
�[36m2024-05-06 14:58:02.638 UTC 3051f5 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5018974�
�[36m2024-05-06 14:58:02.638 UTC 3051f6 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5295578�
�[36m2024-05-06 14:58:02.638 UTC 3051f7 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5298779�
�[36m2024-05-06 14:58:02.638 UTC 3051f8 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5358032�
�[36m2024-05-06 14:58:02.638 UTC 3051f9 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5358033�
�[36m2024-05-06 14:58:02.638 UTC 3051fa DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5560381�
�[36m2024-05-06 14:58:02.638 UTC 3051fb DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5560382�
�[36m2024-05-06 14:58:02.638 UTC 3051fc DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5586155�
�[36m2024-05-06 14:58:02.638 UTC 3051fd DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�5589355�
�[36m2024-05-06 14:58:02.638 UTC 3051fe DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6276774�
�[36m2024-05-06 14:58:02.638 UTC 3051ff DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6279974�
�[36m2024-05-06 14:58:02.638 UTC 305200 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6390387�
�[36m2024-05-06 14:58:02.638 UTC 305201 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6393588�
�[36m2024-05-06 14:58:02.638 UTC 305202 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6601633�
�[36m2024-05-06 14:58:02.638 UTC 305203 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6601634�
�[36m2024-05-06 14:58:02.638 UTC 305204 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6610907�
�[36m2024-05-06 14:58:02.638 UTC 305205 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6614107�
�[36m2024-05-06 14:58:02.638 UTC 305206 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6709169�
�[36m2024-05-06 14:58:02.638 UTC 305207 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6712369�
�[36m2024-05-06 14:58:02.638 UTC 305208 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6774661�
�[36m2024-05-06 14:58:02.638 UTC 305209 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6777862�
�[36m2024-05-06 14:58:02.638 UTC 30520a DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6823169�
�[36m2024-05-06 14:58:02.638 UTC 30520b DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�6826369�
�[36m2024-05-06 14:58:02.638 UTC 30520c DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�7269932�
�[36m2024-05-06 14:58:02.638 UTC 30520d DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�7273132�
�[36m2024-05-06 14:58:02.638 UTC 30520e DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�7727005�
�[36m2024-05-06 14:58:02.638 UTC 30520f DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�7730205�
�[36m2024-05-06 14:58:02.639 UTC 305210 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�7808480�
�[36m2024-05-06 14:58:02.639 UTC 305211 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�7808481�
�[36m2024-05-06 14:58:02.639 UTC 305212 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8057385�
�[36m2024-05-06 14:58:02.639 UTC 305213 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8060585�
�[36m2024-05-06 14:58:02.639 UTC 305214 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8362508�
�[36m2024-05-06 14:58:02.639 UTC 305215 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8362509�
�[36m2024-05-06 14:58:02.639 UTC 305216 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8367541�
�[36m2024-05-06 14:58:02.639 UTC 305217 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8367542�
�[36m2024-05-06 14:58:02.639 UTC 305218 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�839002�
�[36m2024-05-06 14:58:02.639 UTC 305219 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�842202�
�[36m2024-05-06 14:58:02.639 UTC 30521a DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8544811�
�[36m2024-05-06 14:58:02.639 UTC 30521b DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8544812�
�[36m2024-05-06 14:58:02.639 UTC 30521c DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8973136�
�[36m2024-05-06 14:58:02.639 UTC 30521d DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�8973137�
�[36m2024-05-06 14:58:02.639 UTC 30521e DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9387703�
�[36m2024-05-06 14:58:02.639 UTC 30521f DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9387704�
�[36m2024-05-06 14:58:02.639 UTC 305220 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9422975�
�[36m2024-05-06 14:58:02.639 UTC 305221 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9422976�
�[36m2024-05-06 14:58:02.639 UTC 305222 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9474984�
�[36m2024-05-06 14:58:02.639 UTC 305223 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9478183�
�[36m2024-05-06 14:58:02.639 UTC 305224 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9769204�
�[36m2024-05-06 14:58:02.639 UTC 305225 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9769205�
�[36m2024-05-06 14:58:02.639 UTC 305226 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9788971�
�[36m2024-05-06 14:58:02.639 UTC 305227 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9792172�
�[36m2024-05-06 14:58:02.639 UTC 305228 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�993218�
�[36m2024-05-06 14:58:02.639 UTC 305229 DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�996419�
�[36m2024-05-06 14:58:02.639 UTC 30522a DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9985555�
�[36m2024-05-06 14:58:02.639 UTC 30522b DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Adding JSON document and attachments for id: �piece�1176�9985556�
�[36m2024-05-06 14:58:02.639 UTC 30522c DEBU�[0m [couchdb] �[36;1mreadDocRange�[0m -> [trading_t2804a] Exiting ReadDocRange()
�[36m2024-05-06 14:58:02.641 UTC 30522d DEBU�[0m [chaincode] �[36;1mHandleGetStateByRange�[0m -> Got keys and values. Sending RESPONSE
�[36m2024-05-06 14:58:02.641 UTC 30522e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE_BY_RANGE. Sending RESPONSE
�[36m2024-05-06 14:58:02.641 UTC 30522f DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.641 UTC 305230 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.642 UTC 305231 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1123694�, channel trading
�[36m2024-05-06 14:58:02.642 UTC 305232 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1123694�
�[36m2024-05-06 14:58:02.642 UTC 305233 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1123694�]
�[36m2024-05-06 14:58:02.642 UTC 305234 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.642 UTC 305235 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001123694%00?attachments=true
�[36m2024-05-06 14:58:02.681 UTC 305236 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.682 UTC 305237 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:02.689 UTC 305238 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:02.697 UTC 305239 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:02.697 UTC 30523a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.697 UTC 30523b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.698 UTC 30523c DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.698 UTC 30523d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.698 UTC 30523e DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1123695�, channel trading
�[36m2024-05-06 14:58:02.698 UTC 30523f DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1123695�
�[36m2024-05-06 14:58:02.698 UTC 305240 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1123695�]
�[36m2024-05-06 14:58:02.698 UTC 305241 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.698 UTC 305242 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001123695%00?attachments=true
�[36m2024-05-06 14:58:02.726 UTC 305243 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.728 UTC 305244 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:02.734 UTC 305245 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:02.740 UTC 305246 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:02.740 UTC 305247 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.740 UTC 305248 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.741 UTC 305249 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.741 UTC 30524a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.741 UTC 30524b DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1340565�, channel trading
�[36m2024-05-06 14:58:02.741 UTC 30524c DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1340565�
�[36m2024-05-06 14:58:02.741 UTC 30524d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1340565�]
�[36m2024-05-06 14:58:02.741 UTC 30524e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.741 UTC 30524f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001340565%00?attachments=true
�[36m2024-05-06 14:58:02.777 UTC 305250 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.779 UTC 305251 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:02.787 UTC 305252 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:02.797 UTC 305253 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:02.797 UTC 305254 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.797 UTC 305255 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.798 UTC 305256 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.798 UTC 305257 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.798 UTC 305258 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1343765�, channel trading
�[36m2024-05-06 14:58:02.798 UTC 305259 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1343765�
�[36m2024-05-06 14:58:02.798 UTC 30525a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1343765�]
�[36m2024-05-06 14:58:02.798 UTC 30525b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.798 UTC 30525c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001343765%00?attachments=true
�[36m2024-05-06 14:58:02.835 UTC 30525d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.837 UTC 30525e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:02.847 UTC 30525f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:02.853 UTC 305260 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:02.853 UTC 305261 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.853 UTC 305262 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.854 UTC 305263 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.854 UTC 305264 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.854 UTC 305265 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1360084�, channel trading
�[36m2024-05-06 14:58:02.854 UTC 305266 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1360084�
�[36m2024-05-06 14:58:02.854 UTC 305267 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1360084�]
�[36m2024-05-06 14:58:02.854 UTC 305268 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.854 UTC 305269 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001360084%00?attachments=true
�[36m2024-05-06 14:58:02.882 UTC 30526a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.883 UTC 30526b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:02.890 UTC 30526c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:02.896 UTC 30526d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:02.896 UTC 30526e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.896 UTC 30526f DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.897 UTC 305270 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.897 UTC 305271 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.897 UTC 305272 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1363284�, channel trading
�[36m2024-05-06 14:58:02.897 UTC 305273 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1363284�
�[36m2024-05-06 14:58:02.897 UTC 305274 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1363284�]
�[36m2024-05-06 14:58:02.897 UTC 305275 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.897 UTC 305276 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001363284%00?attachments=true
�[36m2024-05-06 14:58:02.924 UTC 305277 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.925 UTC 305278 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:02.932 UTC 305279 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:02.936 UTC 30527a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:02.936 UTC 30527b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.937 UTC 30527c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.937 UTC 30527d DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.937 UTC 30527e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.937 UTC 30527f DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1657398�, channel trading
�[36m2024-05-06 14:58:02.937 UTC 305280 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1657398�
�[36m2024-05-06 14:58:02.937 UTC 305281 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1657398�]
�[36m2024-05-06 14:58:02.937 UTC 305282 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.937 UTC 305283 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001657398%00?attachments=true
�[36m2024-05-06 14:58:02.963 UTC 305284 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:02.964 UTC 305285 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:02.972 UTC 305286 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:02.978 UTC 305287 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:02.979 UTC 305288 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:02.979 UTC 305289 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:02.979 UTC 30528a DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:02.979 UTC 30528b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:02.979 UTC 30528c DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1660599�, channel trading
�[36m2024-05-06 14:58:02.979 UTC 30528d DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1660599�
�[36m2024-05-06 14:58:02.980 UTC 30528e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1660599�]
�[36m2024-05-06 14:58:02.980 UTC 30528f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:02.980 UTC 305290 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001660599%00?attachments=true
�[36m2024-05-06 14:58:03.019 UTC 305291 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.021 UTC 305292 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.032 UTC 305293 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.039 UTC 305294 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.039 UTC 305295 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.040 UTC 305296 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.040 UTC 305297 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.040 UTC 305298 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.040 UTC 305299 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1931981�, channel trading
�[36m2024-05-06 14:58:03.040 UTC 30529a DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1931981�
�[36m2024-05-06 14:58:03.040 UTC 30529b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1931981�]
�[36m2024-05-06 14:58:03.040 UTC 30529c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.040 UTC 30529d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001931981%00?attachments=true
�[36m2024-05-06 14:58:03.068 UTC 30529e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.070 UTC 30529f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.076 UTC 3052a0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.081 UTC 3052a1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.081 UTC 3052a2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.081 UTC 3052a3 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.082 UTC 3052a4 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.082 UTC 3052a5 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.082 UTC 3052a6 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�1935181�, channel trading
�[36m2024-05-06 14:58:03.082 UTC 3052a7 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�1935181�
�[36m2024-05-06 14:58:03.082 UTC 3052a8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�1935181�]
�[36m2024-05-06 14:58:03.082 UTC 3052a9 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.082 UTC 3052aa DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%001935181%00?attachments=true
�[36m2024-05-06 14:58:03.108 UTC 3052ab DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.110 UTC 3052ac DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.116 UTC 3052ad DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.121 UTC 3052ae DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.121 UTC 3052af DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.121 UTC 3052b0 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.122 UTC 3052b1 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.122 UTC 3052b2 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.122 UTC 3052b3 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2016810�, channel trading
�[36m2024-05-06 14:58:03.122 UTC 3052b4 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2016810�
�[36m2024-05-06 14:58:03.122 UTC 3052b5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2016810�]
�[36m2024-05-06 14:58:03.122 UTC 3052b6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.122 UTC 3052b7 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002016810%00?attachments=true
�[36m2024-05-06 14:58:03.147 UTC 3052b8 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.149 UTC 3052b9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.155 UTC 3052ba DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.160 UTC 3052bb DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.161 UTC 3052bc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.161 UTC 3052bd DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.161 UTC 3052be DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.161 UTC 3052bf DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.161 UTC 3052c0 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2020010�, channel trading
�[36m2024-05-06 14:58:03.161 UTC 3052c1 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2020010�
�[36m2024-05-06 14:58:03.161 UTC 3052c2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2020010�]
�[36m2024-05-06 14:58:03.161 UTC 3052c3 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.161 UTC 3052c4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002020010%00?attachments=true
�[36m2024-05-06 14:58:03.206 UTC 3052c5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.208 UTC 3052c6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.217 UTC 3052c7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.222 UTC 3052c8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.222 UTC 3052c9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.223 UTC 3052ca DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.223 UTC 3052cb DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.223 UTC 3052cc DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.223 UTC 3052cd DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2178421�, channel trading
�[36m2024-05-06 14:58:03.223 UTC 3052ce DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2178421�
�[36m2024-05-06 14:58:03.223 UTC 3052cf DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2178421�]
�[36m2024-05-06 14:58:03.223 UTC 3052d0 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.223 UTC 3052d1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002178421%00?attachments=true
�[36m2024-05-06 14:58:03.251 UTC 3052d2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.253 UTC 3052d3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.259 UTC 3052d4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.263 UTC 3052d5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.263 UTC 3052d6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.263 UTC 3052d7 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.264 UTC 3052d8 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.264 UTC 3052d9 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.264 UTC 3052da DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2181621�, channel trading
�[36m2024-05-06 14:58:03.264 UTC 3052db DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2181621�
�[36m2024-05-06 14:58:03.264 UTC 3052dc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2181621�]
�[36m2024-05-06 14:58:03.264 UTC 3052dd DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.264 UTC 3052de DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002181621%00?attachments=true
�[36m2024-05-06 14:58:03.291 UTC 3052df DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.292 UTC 3052e0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.298 UTC 3052e1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.303 UTC 3052e2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.303 UTC 3052e3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.303 UTC 3052e4 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.304 UTC 3052e5 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.304 UTC 3052e6 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.304 UTC 3052e7 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2661057�, channel trading
�[36m2024-05-06 14:58:03.304 UTC 3052e8 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2661057�
�[36m2024-05-06 14:58:03.304 UTC 3052e9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2661057�]
�[36m2024-05-06 14:58:03.304 UTC 3052ea DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.304 UTC 3052eb DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002661057%00?attachments=true
�[36m2024-05-06 14:58:03.332 UTC 3052ec DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.334 UTC 3052ed DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.340 UTC 3052ee DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.345 UTC 3052ef DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.345 UTC 3052f0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.345 UTC 3052f1 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.346 UTC 3052f2 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.346 UTC 3052f3 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.346 UTC 3052f4 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2664257�, channel trading
�[36m2024-05-06 14:58:03.346 UTC 3052f5 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2664257�
�[36m2024-05-06 14:58:03.346 UTC 3052f6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2664257�]
�[36m2024-05-06 14:58:03.346 UTC 3052f7 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.346 UTC 3052f8 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002664257%00?attachments=true
�[36m2024-05-06 14:58:03.382 UTC 3052f9 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.383 UTC 3052fa DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.390 UTC 3052fb DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.395 UTC 3052fc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.395 UTC 3052fd DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.395 UTC 3052fe DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.396 UTC 3052ff DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.396 UTC 305300 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.396 UTC 305301 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2768000�, channel trading
�[36m2024-05-06 14:58:03.396 UTC 305302 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2768000�
�[36m2024-05-06 14:58:03.396 UTC 305303 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2768000�]
�[36m2024-05-06 14:58:03.396 UTC 305304 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.396 UTC 305305 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002768000%00?attachments=true
�[36m2024-05-06 14:58:03.421 UTC 305306 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.422 UTC 305307 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.428 UTC 305308 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.433 UTC 305309 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.433 UTC 30530a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.433 UTC 30530b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.433 UTC 30530c DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.434 UTC 30530d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.434 UTC 30530e DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�2771200�, channel trading
�[36m2024-05-06 14:58:03.434 UTC 30530f DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�2771200�
�[36m2024-05-06 14:58:03.434 UTC 305310 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�2771200�]
�[36m2024-05-06 14:58:03.434 UTC 305311 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.434 UTC 305312 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%002771200%00?attachments=true
�[36m2024-05-06 14:58:03.460 UTC 305313 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.461 UTC 305314 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.467 UTC 305315 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.472 UTC 305316 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.472 UTC 305317 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.472 UTC 305318 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.473 UTC 305319 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.473 UTC 30531a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.473 UTC 30531b DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3016954�, channel trading
�[36m2024-05-06 14:58:03.473 UTC 30531c DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3016954�
�[36m2024-05-06 14:58:03.473 UTC 30531d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3016954�]
�[36m2024-05-06 14:58:03.473 UTC 30531e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.473 UTC 30531f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003016954%00?attachments=true
�[36m2024-05-06 14:58:03.499 UTC 305320 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.501 UTC 305321 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.507 UTC 305322 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.512 UTC 305323 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.512 UTC 305324 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.512 UTC 305325 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.512 UTC 305326 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.512 UTC 305327 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.512 UTC 305328 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3020155�, channel trading
�[36m2024-05-06 14:58:03.513 UTC 305329 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3020155�
�[36m2024-05-06 14:58:03.513 UTC 30532a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3020155�]
�[36m2024-05-06 14:58:03.513 UTC 30532b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.513 UTC 30532c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003020155%00?attachments=true
�[36m2024-05-06 14:58:03.537 UTC 30532d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.539 UTC 30532e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.544 UTC 30532f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.549 UTC 305330 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.549 UTC 305331 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.549 UTC 305332 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.550 UTC 305333 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.550 UTC 305334 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.550 UTC 305335 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3153642�, channel trading
�[36m2024-05-06 14:58:03.550 UTC 305336 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3153642�
�[36m2024-05-06 14:58:03.550 UTC 305337 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3153642�]
�[36m2024-05-06 14:58:03.550 UTC 305338 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.550 UTC 305339 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003153642%00?attachments=true
�[36m2024-05-06 14:58:03.588 UTC 30533a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.590 UTC 30533b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.597 UTC 30533c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.603 UTC 30533d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.603 UTC 30533e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.603 UTC 30533f DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.603 UTC 305340 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.604 UTC 305341 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.604 UTC 305342 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3153643�, channel trading
�[36m2024-05-06 14:58:03.604 UTC 305343 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3153643�
�[36m2024-05-06 14:58:03.604 UTC 305344 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3153643�]
�[36m2024-05-06 14:58:03.604 UTC 305345 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.604 UTC 305346 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003153643%00?attachments=true
�[36m2024-05-06 14:58:03.634 UTC 305347 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.636 UTC 305348 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.642 UTC 305349 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.647 UTC 30534a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.647 UTC 30534b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.647 UTC 30534c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.648 UTC 30534d DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.648 UTC 30534e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.648 UTC 30534f DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3233537�, channel trading
�[36m2024-05-06 14:58:03.648 UTC 305350 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3233537�
�[36m2024-05-06 14:58:03.648 UTC 305351 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3233537�]
�[36m2024-05-06 14:58:03.648 UTC 305352 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.648 UTC 305353 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003233537%00?attachments=true
�[36m2024-05-06 14:58:03.678 UTC 305354 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.679 UTC 305355 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.685 UTC 305356 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.689 UTC 305357 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.689 UTC 305358 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.689 UTC 305359 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.690 UTC 30535a DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.690 UTC 30535b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.690 UTC 30535c DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3233538�, channel trading
�[36m2024-05-06 14:58:03.690 UTC 30535d DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3233538�
�[36m2024-05-06 14:58:03.690 UTC 30535e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3233538�]
�[36m2024-05-06 14:58:03.690 UTC 30535f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.690 UTC 305360 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003233538%00?attachments=true
�[36m2024-05-06 14:58:03.715 UTC 305361 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.717 UTC 305362 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.726 UTC 305363 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.733 UTC 305364 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.733 UTC 305365 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.733 UTC 305366 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.734 UTC 305367 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.734 UTC 305368 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.734 UTC 305369 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�354188�, channel trading
�[36m2024-05-06 14:58:03.734 UTC 30536a DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�354188�
�[36m2024-05-06 14:58:03.734 UTC 30536b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�354188�]
�[36m2024-05-06 14:58:03.734 UTC 30536c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.734 UTC 30536d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00354188%00?attachments=true
�[36m2024-05-06 14:58:03.769 UTC 30536e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.771 UTC 30536f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.777 UTC 305370 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.782 UTC 305371 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.782 UTC 305372 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.782 UTC 305373 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.783 UTC 305374 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.783 UTC 305375 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.783 UTC 305376 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�357388�, channel trading
�[36m2024-05-06 14:58:03.783 UTC 305377 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�357388�
�[36m2024-05-06 14:58:03.783 UTC 305378 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�357388�]
�[36m2024-05-06 14:58:03.783 UTC 305379 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.783 UTC 30537a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00357388%00?attachments=true
�[36m2024-05-06 14:58:03.807 UTC 30537b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.808 UTC 30537c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.814 UTC 30537d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.820 UTC 30537e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.820 UTC 30537f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.820 UTC 305380 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.820 UTC 305381 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.821 UTC 305382 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.821 UTC 305383 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3732014�, channel trading
�[36m2024-05-06 14:58:03.821 UTC 305384 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3732014�
�[36m2024-05-06 14:58:03.821 UTC 305385 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3732014�]
�[36m2024-05-06 14:58:03.821 UTC 305386 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.821 UTC 305387 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003732014%00?attachments=true
�[36m2024-05-06 14:58:03.870 UTC 305388 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.871 UTC 305389 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.878 UTC 30538a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.883 UTC 30538b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.883 UTC 30538c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.883 UTC 30538d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.884 UTC 30538e DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.884 UTC 30538f DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.884 UTC 305390 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3732015�, channel trading
�[36m2024-05-06 14:58:03.884 UTC 305391 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3732015�
�[36m2024-05-06 14:58:03.884 UTC 305392 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3732015�]
�[36m2024-05-06 14:58:03.884 UTC 305393 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.884 UTC 305394 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003732015%00?attachments=true
�[36m2024-05-06 14:58:03.914 UTC 305395 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.915 UTC 305396 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.923 UTC 305397 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.932 UTC 305398 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.932 UTC 305399 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.932 UTC 30539a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.932 UTC 30539b DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.932 UTC 30539c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.933 UTC 30539d DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3872040�, channel trading
�[36m2024-05-06 14:58:03.933 UTC 30539e DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3872040�
�[36m2024-05-06 14:58:03.933 UTC 30539f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3872040�]
�[36m2024-05-06 14:58:03.933 UTC 3053a0 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.933 UTC 3053a1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003872040%00?attachments=true
�[36m2024-05-06 14:58:03.967 UTC 3053a2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:03.968 UTC 3053a3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:03.975 UTC 3053a4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:03.981 UTC 3053a5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:03.981 UTC 3053a6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:03.981 UTC 3053a7 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:03.982 UTC 3053a8 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:03.982 UTC 3053a9 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:03.982 UTC 3053aa DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3872041�, channel trading
�[36m2024-05-06 14:58:03.982 UTC 3053ab DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3872041�
�[36m2024-05-06 14:58:03.982 UTC 3053ac DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3872041�]
�[36m2024-05-06 14:58:03.982 UTC 3053ad DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:03.982 UTC 3053ae DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003872041%00?attachments=true
�[36m2024-05-06 14:58:04.014 UTC 3053af DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.016 UTC 3053b0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.023 UTC 3053b1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.029 UTC 3053b2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.029 UTC 3053b3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.029 UTC 3053b4 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.029 UTC 3053b5 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.030 UTC 3053b6 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.030 UTC 3053b7 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3923471�, channel trading
�[36m2024-05-06 14:58:04.030 UTC 3053b8 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3923471�
�[36m2024-05-06 14:58:04.030 UTC 3053b9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3923471�]
�[36m2024-05-06 14:58:04.030 UTC 3053ba DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.030 UTC 3053bb DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003923471%00?attachments=true
�[36m2024-05-06 14:58:04.067 UTC 3053bc DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.069 UTC 3053bd DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.076 UTC 3053be DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.082 UTC 3053bf DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.082 UTC 3053c0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.082 UTC 3053c1 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.082 UTC 3053c2 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.082 UTC 3053c3 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.082 UTC 3053c4 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�3926671�, channel trading
�[36m2024-05-06 14:58:04.083 UTC 3053c5 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�3926671�
�[36m2024-05-06 14:58:04.083 UTC 3053c6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�3926671�]
�[36m2024-05-06 14:58:04.083 UTC 3053c7 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.083 UTC 3053c8 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%003926671%00?attachments=true
�[36m2024-05-06 14:58:04.117 UTC 3053c9 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.119 UTC 3053ca DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.131 UTC 3053cb DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.139 UTC 3053cc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.139 UTC 3053cd DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.139 UTC 3053ce DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.139 UTC 3053cf DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.140 UTC 3053d0 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.140 UTC 3053d1 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�407564�, channel trading
�[36m2024-05-06 14:58:04.140 UTC 3053d2 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�407564�
�[36m2024-05-06 14:58:04.140 UTC 3053d3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�407564�]
�[36m2024-05-06 14:58:04.140 UTC 3053d4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.140 UTC 3053d5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00407564%00?attachments=true
�[36m2024-05-06 14:58:04.168 UTC 3053d6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.170 UTC 3053d7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.177 UTC 3053d8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.183 UTC 3053d9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.183 UTC 3053da DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.183 UTC 3053db DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.183 UTC 3053dc DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.183 UTC 3053dd DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.183 UTC 3053de DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4085549�, channel trading
�[36m2024-05-06 14:58:04.184 UTC 3053df DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4085549�
�[36m2024-05-06 14:58:04.184 UTC 3053e0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4085549�]
�[36m2024-05-06 14:58:04.184 UTC 3053e1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.184 UTC 3053e2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004085549%00?attachments=true
�[36m2024-05-06 14:58:04.224 UTC 3053e3 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.227 UTC 3053e4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.236 UTC 3053e5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.246 UTC 3053e6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.246 UTC 3053e7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.246 UTC 3053e8 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.247 UTC 3053e9 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.247 UTC 3053ea DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.247 UTC 3053eb DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4088748�, channel trading
�[36m2024-05-06 14:58:04.247 UTC 3053ec DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4088748�
�[36m2024-05-06 14:58:04.247 UTC 3053ed DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4088748�]
�[36m2024-05-06 14:58:04.247 UTC 3053ee DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.247 UTC 3053ef DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004088748%00?attachments=true
�[36m2024-05-06 14:58:04.278 UTC 3053f0 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.280 UTC 3053f1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.287 UTC 3053f2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.292 UTC 3053f3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.292 UTC 3053f4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.293 UTC 3053f5 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.293 UTC 3053f6 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.293 UTC 3053f7 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.293 UTC 3053f8 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�410764�, channel trading
�[36m2024-05-06 14:58:04.293 UTC 3053f9 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�410764�
�[36m2024-05-06 14:58:04.293 UTC 3053fa DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�410764�]
�[36m2024-05-06 14:58:04.293 UTC 3053fb DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.293 UTC 3053fc DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00410764%00?attachments=true
�[36m2024-05-06 14:58:04.349 UTC 3053fd DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.352 UTC 3053fe DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.362 UTC 3053ff DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.368 UTC 305400 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.368 UTC 305401 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.368 UTC 305402 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.369 UTC 305403 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.369 UTC 305404 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.369 UTC 305405 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4348020�, channel trading
�[36m2024-05-06 14:58:04.369 UTC 305406 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4348020�
�[36m2024-05-06 14:58:04.369 UTC 305407 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4348020�]
�[36m2024-05-06 14:58:04.369 UTC 305408 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.369 UTC 305409 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004348020%00?attachments=true
�[36m2024-05-06 14:58:04.397 UTC 30540a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.399 UTC 30540b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.411 UTC 30540c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.421 UTC 30540d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.421 UTC 30540e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.421 UTC 30540f DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.421 UTC 305410 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.421 UTC 305411 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.422 UTC 305412 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4351220�, channel trading
�[36m2024-05-06 14:58:04.422 UTC 305413 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4351220�
�[36m2024-05-06 14:58:04.422 UTC 305414 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4351220�]
�[36m2024-05-06 14:58:04.422 UTC 305415 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.422 UTC 305416 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004351220%00?attachments=true
�[36m2024-05-06 14:58:04.453 UTC 305417 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.454 UTC 305418 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.461 UTC 305419 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.468 UTC 30541a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.468 UTC 30541b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.468 UTC 30541c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.469 UTC 30541d DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.469 UTC 30541e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.469 UTC 30541f DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4426064�, channel trading
�[36m2024-05-06 14:58:04.469 UTC 305420 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4426064�
�[36m2024-05-06 14:58:04.469 UTC 305421 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4426064�]
�[36m2024-05-06 14:58:04.469 UTC 305422 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.469 UTC 305423 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004426064%00?attachments=true
�[36m2024-05-06 14:58:04.505 UTC 305424 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.506 UTC 305425 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.513 UTC 305426 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.518 UTC 305427 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.518 UTC 305428 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.518 UTC 305429 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.519 UTC 30542a DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.519 UTC 30542b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.519 UTC 30542c DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4429264�, channel trading
�[36m2024-05-06 14:58:04.519 UTC 30542d DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4429264�
�[36m2024-05-06 14:58:04.519 UTC 30542e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4429264�]
�[36m2024-05-06 14:58:04.519 UTC 30542f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.519 UTC 305430 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004429264%00?attachments=true
�[36m2024-05-06 14:58:04.546 UTC 305431 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.547 UTC 305432 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.553 UTC 305433 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.559 UTC 305434 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.559 UTC 305435 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.559 UTC 305436 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.559 UTC 305437 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.560 UTC 305438 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.560 UTC 305439 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4589651�, channel trading
�[36m2024-05-06 14:58:04.560 UTC 30543a DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4589651�
�[36m2024-05-06 14:58:04.560 UTC 30543b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4589651�]
�[36m2024-05-06 14:58:04.560 UTC 30543c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.560 UTC 30543d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004589651%00?attachments=true
�[36m2024-05-06 14:58:04.588 UTC 30543e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.589 UTC 30543f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.595 UTC 305440 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.600 UTC 305441 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.600 UTC 305442 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.600 UTC 305443 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.600 UTC 305444 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.601 UTC 305445 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.601 UTC 305446 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�4589652�, channel trading
�[36m2024-05-06 14:58:04.601 UTC 305447 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�4589652�
�[36m2024-05-06 14:58:04.601 UTC 305448 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�4589652�]
�[36m2024-05-06 14:58:04.601 UTC 305449 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.601 UTC 30544a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%004589652%00?attachments=true
�[36m2024-05-06 14:58:04.627 UTC 30544b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.629 UTC 30544c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.636 UTC 30544d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.645 UTC 30544e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.645 UTC 30544f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.645 UTC 305450 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.646 UTC 305451 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.646 UTC 305452 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.646 UTC 305453 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�472724�, channel trading
�[36m2024-05-06 14:58:04.646 UTC 305454 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�472724�
�[36m2024-05-06 14:58:04.646 UTC 305455 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�472724�]
�[36m2024-05-06 14:58:04.646 UTC 305456 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.646 UTC 305457 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00472724%00?attachments=true
�[36m2024-05-06 14:58:04.676 UTC 305458 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.678 UTC 305459 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.684 UTC 30545a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.689 UTC 30545b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.689 UTC 30545c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.690 UTC 30545d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.690 UTC 30545e DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.690 UTC 30545f DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.690 UTC 305460 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�475925�, channel trading
�[36m2024-05-06 14:58:04.690 UTC 305461 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�475925�
�[36m2024-05-06 14:58:04.690 UTC 305462 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�475925�]
�[36m2024-05-06 14:58:04.690 UTC 305463 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.691 UTC 305464 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00475925%00?attachments=true
�[36m2024-05-06 14:58:04.721 UTC 305465 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.722 UTC 305466 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.729 UTC 305467 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.734 UTC 305468 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.734 UTC 305469 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.735 UTC 30546a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.735 UTC 30546b DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.735 UTC 30546c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.735 UTC 30546d DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5018973�, channel trading
�[36m2024-05-06 14:58:04.735 UTC 30546e DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5018973�
�[36m2024-05-06 14:58:04.735 UTC 30546f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5018973�]
�[36m2024-05-06 14:58:04.735 UTC 305470 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.735 UTC 305471 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005018973%00?attachments=true
�[36m2024-05-06 14:58:04.777 UTC 305472 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.780 UTC 305473 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.790 UTC 305474 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.796 UTC 305475 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.796 UTC 305476 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.797 UTC 305477 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.797 UTC 305478 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.797 UTC 305479 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.797 UTC 30547a DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5018974�, channel trading
�[36m2024-05-06 14:58:04.797 UTC 30547b DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5018974�
�[36m2024-05-06 14:58:04.797 UTC 30547c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5018974�]
�[36m2024-05-06 14:58:04.797 UTC 30547d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.797 UTC 30547e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005018974%00?attachments=true
�[36m2024-05-06 14:58:04.827 UTC 30547f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.828 UTC 305480 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.836 UTC 305481 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.842 UTC 305482 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.842 UTC 305483 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.842 UTC 305484 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.843 UTC 305485 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.843 UTC 305486 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.843 UTC 305487 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5295578�, channel trading
�[36m2024-05-06 14:58:04.843 UTC 305488 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5295578�
�[36m2024-05-06 14:58:04.843 UTC 305489 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5295578�]
�[36m2024-05-06 14:58:04.843 UTC 30548a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.843 UTC 30548b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005295578%00?attachments=true
�[36m2024-05-06 14:58:04.874 UTC 30548c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.876 UTC 30548d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.885 UTC 30548e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.893 UTC 30548f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.893 UTC 305490 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.894 UTC 305491 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.894 UTC 305492 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.894 UTC 305493 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.894 UTC 305494 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5298779�, channel trading
�[36m2024-05-06 14:58:04.894 UTC 305495 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5298779�
�[36m2024-05-06 14:58:04.894 UTC 305496 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5298779�]
�[36m2024-05-06 14:58:04.894 UTC 305497 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.894 UTC 305498 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005298779%00?attachments=true
�[36m2024-05-06 14:58:04.923 UTC 305499 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.925 UTC 30549a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.931 UTC 30549b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[39] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.936 UTC 30549c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.936 UTC 30549d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.936 UTC 30549e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.936 UTC 30549f DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.936 UTC 3054a0 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.936 UTC 3054a1 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5358032�, channel trading
�[36m2024-05-06 14:58:04.936 UTC 3054a2 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5358032�
�[36m2024-05-06 14:58:04.937 UTC 3054a3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5358032�]
�[36m2024-05-06 14:58:04.937 UTC 3054a4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.937 UTC 3054a5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005358032%00?attachments=true
�[36m2024-05-06 14:58:04.968 UTC 3054a6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:04.971 UTC 3054a7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:04.981 UTC 3054a8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:04.986 UTC 3054a9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:04.986 UTC 3054aa DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:04.986 UTC 3054ab DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:04.987 UTC 3054ac DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:04.987 UTC 3054ad DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:04.987 UTC 3054ae DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5358033�, channel trading
�[36m2024-05-06 14:58:04.987 UTC 3054af DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5358033�
�[36m2024-05-06 14:58:04.987 UTC 3054b0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5358033�]
�[36m2024-05-06 14:58:04.987 UTC 3054b1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:04.987 UTC 3054b2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005358033%00?attachments=true
�[36m2024-05-06 14:58:05.024 UTC 3054b3 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.026 UTC 3054b4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.031 UTC 3054b5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.036 UTC 3054b6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.036 UTC 3054b7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.036 UTC 3054b8 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.037 UTC 3054b9 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.037 UTC 3054ba DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.037 UTC 3054bb DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5560381�, channel trading
�[36m2024-05-06 14:58:05.037 UTC 3054bc DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5560381�
�[36m2024-05-06 14:58:05.037 UTC 3054bd DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5560381�]
�[36m2024-05-06 14:58:05.037 UTC 3054be DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.037 UTC 3054bf DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005560381%00?attachments=true
�[36m2024-05-06 14:58:05.069 UTC 3054c0 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.070 UTC 3054c1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.077 UTC 3054c2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.082 UTC 3054c3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.082 UTC 3054c4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.082 UTC 3054c5 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.082 UTC 3054c6 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.083 UTC 3054c7 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.083 UTC 3054c8 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5560382�, channel trading
�[36m2024-05-06 14:58:05.083 UTC 3054c9 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5560382�
�[36m2024-05-06 14:58:05.083 UTC 3054ca DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5560382�]
�[36m2024-05-06 14:58:05.083 UTC 3054cb DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.083 UTC 3054cc DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005560382%00?attachments=true
�[36m2024-05-06 14:58:05.110 UTC 3054cd DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.113 UTC 3054ce DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.120 UTC 3054cf DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.126 UTC 3054d0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.126 UTC 3054d1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.126 UTC 3054d2 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.127 UTC 3054d3 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.127 UTC 3054d4 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.127 UTC 3054d5 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5586155�, channel trading
�[36m2024-05-06 14:58:05.127 UTC 3054d6 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5586155�
�[36m2024-05-06 14:58:05.127 UTC 3054d7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5586155�]
�[36m2024-05-06 14:58:05.127 UTC 3054d8 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.127 UTC 3054d9 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005586155%00?attachments=true
�[36m2024-05-06 14:58:05.160 UTC 3054da DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.162 UTC 3054db DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.170 UTC 3054dc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.176 UTC 3054dd DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.176 UTC 3054de DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.176 UTC 3054df DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.177 UTC 3054e0 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.177 UTC 3054e1 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.177 UTC 3054e2 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�5589355�, channel trading
�[36m2024-05-06 14:58:05.177 UTC 3054e3 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�5589355�
�[36m2024-05-06 14:58:05.177 UTC 3054e4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�5589355�]
�[36m2024-05-06 14:58:05.177 UTC 3054e5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.177 UTC 3054e6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%005589355%00?attachments=true
�[36m2024-05-06 14:58:05.205 UTC 3054e7 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.207 UTC 3054e8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.213 UTC 3054e9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.218 UTC 3054ea DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.218 UTC 3054eb DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.218 UTC 3054ec DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.218 UTC 3054ed DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.219 UTC 3054ee DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.219 UTC 3054ef DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6276774�, channel trading
�[36m2024-05-06 14:58:05.219 UTC 3054f0 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6276774�
�[36m2024-05-06 14:58:05.219 UTC 3054f1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6276774�]
�[36m2024-05-06 14:58:05.219 UTC 3054f2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.219 UTC 3054f3 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006276774%00?attachments=true
�[36m2024-05-06 14:58:05.247 UTC 3054f4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.249 UTC 3054f5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.255 UTC 3054f6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.261 UTC 3054f7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.261 UTC 3054f8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.261 UTC 3054f9 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.262 UTC 3054fa DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.262 UTC 3054fb DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.262 UTC 3054fc DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6279974�, channel trading
�[36m2024-05-06 14:58:05.262 UTC 3054fd DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6279974�
�[36m2024-05-06 14:58:05.262 UTC 3054fe DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6279974�]
�[36m2024-05-06 14:58:05.262 UTC 3054ff DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.262 UTC 305500 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006279974%00?attachments=true
�[36m2024-05-06 14:58:05.294 UTC 305501 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.296 UTC 305502 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.305 UTC 305503 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.312 UTC 305504 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.312 UTC 305505 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.312 UTC 305506 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.312 UTC 305507 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.312 UTC 305508 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.312 UTC 305509 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6390387�, channel trading
�[36m2024-05-06 14:58:05.312 UTC 30550a DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6390387�
�[36m2024-05-06 14:58:05.313 UTC 30550b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6390387�]
�[36m2024-05-06 14:58:05.313 UTC 30550c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.313 UTC 30550d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006390387%00?attachments=true
�[36m2024-05-06 14:58:05.342 UTC 30550e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.344 UTC 30550f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.351 UTC 305510 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.357 UTC 305511 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.357 UTC 305512 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.357 UTC 305513 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.358 UTC 305514 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.358 UTC 305515 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.358 UTC 305516 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6393588�, channel trading
�[36m2024-05-06 14:58:05.358 UTC 305517 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6393588�
�[36m2024-05-06 14:58:05.358 UTC 305518 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6393588�]
�[36m2024-05-06 14:58:05.358 UTC 305519 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.358 UTC 30551a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006393588%00?attachments=true
�[36m2024-05-06 14:58:05.391 UTC 30551b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.393 UTC 30551c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.399 UTC 30551d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.404 UTC 30551e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.404 UTC 30551f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.404 UTC 305520 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.405 UTC 305521 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.405 UTC 305522 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.405 UTC 305523 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6601633�, channel trading
�[36m2024-05-06 14:58:05.405 UTC 305524 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6601633�
�[36m2024-05-06 14:58:05.405 UTC 305525 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6601633�]
�[36m2024-05-06 14:58:05.405 UTC 305526 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.405 UTC 305527 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006601633%00?attachments=true
�[36m2024-05-06 14:58:05.431 UTC 305528 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.432 UTC 305529 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.439 UTC 30552a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.448 UTC 30552b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.448 UTC 30552c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.448 UTC 30552d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.449 UTC 30552e DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.449 UTC 30552f DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.449 UTC 305530 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6601634�, channel trading
�[36m2024-05-06 14:58:05.449 UTC 305531 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6601634�
�[36m2024-05-06 14:58:05.449 UTC 305532 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6601634�]
�[36m2024-05-06 14:58:05.449 UTC 305533 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.449 UTC 305534 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006601634%00?attachments=true
�[36m2024-05-06 14:58:05.479 UTC 305535 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.481 UTC 305536 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.487 UTC 305537 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.494 UTC 305538 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.494 UTC 305539 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.494 UTC 30553a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.494 UTC 30553b DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.494 UTC 30553c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.495 UTC 30553d DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6610907�, channel trading
�[36m2024-05-06 14:58:05.495 UTC 30553e DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6610907�
�[36m2024-05-06 14:58:05.495 UTC 30553f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6610907�]
�[36m2024-05-06 14:58:05.495 UTC 305540 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.495 UTC 305541 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006610907%00?attachments=true
�[36m2024-05-06 14:58:05.527 UTC 305542 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.530 UTC 305543 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.541 UTC 305544 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.548 UTC 305545 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.548 UTC 305546 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.548 UTC 305547 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.549 UTC 305548 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.549 UTC 305549 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.549 UTC 30554a DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6614107�, channel trading
�[36m2024-05-06 14:58:05.549 UTC 30554b DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6614107�
�[36m2024-05-06 14:58:05.549 UTC 30554c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6614107�]
�[36m2024-05-06 14:58:05.549 UTC 30554d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.549 UTC 30554e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006614107%00?attachments=true
�[36m2024-05-06 14:58:05.591 UTC 30554f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.594 UTC 305550 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.602 UTC 305551 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.608 UTC 305552 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.608 UTC 305553 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.608 UTC 305554 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.609 UTC 305555 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.609 UTC 305556 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.609 UTC 305557 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6709169�, channel trading
�[36m2024-05-06 14:58:05.609 UTC 305558 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6709169�
�[36m2024-05-06 14:58:05.609 UTC 305559 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6709169�]
�[36m2024-05-06 14:58:05.609 UTC 30555a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.609 UTC 30555b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006709169%00?attachments=true
�[36m2024-05-06 14:58:05.643 UTC 30555c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.644 UTC 30555d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.650 UTC 30555e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.655 UTC 30555f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.655 UTC 305560 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.655 UTC 305561 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.656 UTC 305562 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.656 UTC 305563 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.656 UTC 305564 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6712369�, channel trading
�[36m2024-05-06 14:58:05.656 UTC 305565 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6712369�
�[36m2024-05-06 14:58:05.656 UTC 305566 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6712369�]
�[36m2024-05-06 14:58:05.656 UTC 305567 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.656 UTC 305568 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006712369%00?attachments=true
�[36m2024-05-06 14:58:05.683 UTC 305569 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.684 UTC 30556a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.690 UTC 30556b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.695 UTC 30556c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.695 UTC 30556d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.695 UTC 30556e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.696 UTC 30556f DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.696 UTC 305570 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.696 UTC 305571 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6774661�, channel trading
�[36m2024-05-06 14:58:05.696 UTC 305572 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6774661�
�[36m2024-05-06 14:58:05.696 UTC 305573 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6774661�]
�[36m2024-05-06 14:58:05.696 UTC 305574 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.696 UTC 305575 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006774661%00?attachments=true
�[36m2024-05-06 14:58:05.721 UTC 305576 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.723 UTC 305577 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.729 UTC 305578 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.734 UTC 305579 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.734 UTC 30557a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.734 UTC 30557b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.735 UTC 30557c DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.735 UTC 30557d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.735 UTC 30557e DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6777862�, channel trading
�[36m2024-05-06 14:58:05.735 UTC 30557f DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6777862�
�[36m2024-05-06 14:58:05.735 UTC 305580 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6777862�]
�[36m2024-05-06 14:58:05.735 UTC 305581 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.735 UTC 305582 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006777862%00?attachments=true
�[36m2024-05-06 14:58:05.772 UTC 305583 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.773 UTC 305584 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.780 UTC 305585 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.785 UTC 305586 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.785 UTC 305587 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.785 UTC 305588 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.785 UTC 305589 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.786 UTC 30558a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.786 UTC 30558b DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6823169�, channel trading
�[36m2024-05-06 14:58:05.786 UTC 30558c DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6823169�
�[36m2024-05-06 14:58:05.786 UTC 30558d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6823169�]
�[36m2024-05-06 14:58:05.786 UTC 30558e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.786 UTC 30558f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006823169%00?attachments=true
�[36m2024-05-06 14:58:05.810 UTC 305590 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.811 UTC 305591 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.817 UTC 305592 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.823 UTC 305593 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.823 UTC 305594 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.823 UTC 305595 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.824 UTC 305596 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.824 UTC 305597 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.824 UTC 305598 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�6826369�, channel trading
�[36m2024-05-06 14:58:05.824 UTC 305599 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�6826369�
�[36m2024-05-06 14:58:05.824 UTC 30559a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�6826369�]
�[36m2024-05-06 14:58:05.824 UTC 30559b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.824 UTC 30559c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%006826369%00?attachments=true
�[36m2024-05-06 14:58:05.863 UTC 30559d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.866 UTC 30559e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.874 UTC 30559f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.879 UTC 3055a0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.879 UTC 3055a1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.879 UTC 3055a2 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.880 UTC 3055a3 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.880 UTC 3055a4 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.880 UTC 3055a5 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�7269932�, channel trading
�[36m2024-05-06 14:58:05.880 UTC 3055a6 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�7269932�
�[36m2024-05-06 14:58:05.880 UTC 3055a7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�7269932�]
�[36m2024-05-06 14:58:05.880 UTC 3055a8 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.880 UTC 3055a9 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%007269932%00?attachments=true
�[36m2024-05-06 14:58:05.906 UTC 3055aa DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.908 UTC 3055ab DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.918 UTC 3055ac DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.926 UTC 3055ad DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.926 UTC 3055ae DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.926 UTC 3055af DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.927 UTC 3055b0 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.927 UTC 3055b1 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.927 UTC 3055b2 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�7273132�, channel trading
�[36m2024-05-06 14:58:05.927 UTC 3055b3 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�7273132�
�[36m2024-05-06 14:58:05.927 UTC 3055b4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�7273132�]
�[36m2024-05-06 14:58:05.927 UTC 3055b5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.927 UTC 3055b6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%007273132%00?attachments=true
�[36m2024-05-06 14:58:05.962 UTC 3055b7 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:05.963 UTC 3055b8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:05.969 UTC 3055b9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:05.976 UTC 3055ba DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:05.976 UTC 3055bb DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:05.976 UTC 3055bc DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:05.976 UTC 3055bd DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:05.976 UTC 3055be DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:05.977 UTC 3055bf DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�7727005�, channel trading
�[36m2024-05-06 14:58:05.977 UTC 3055c0 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�7727005�
�[36m2024-05-06 14:58:05.977 UTC 3055c1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�7727005�]
�[36m2024-05-06 14:58:05.977 UTC 3055c2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:05.977 UTC 3055c3 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%007727005%00?attachments=true
�[36m2024-05-06 14:58:06.015 UTC 3055c4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.017 UTC 3055c5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.023 UTC 3055c6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.028 UTC 3055c7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.028 UTC 3055c8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.028 UTC 3055c9 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.029 UTC 3055ca DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.029 UTC 3055cb DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.029 UTC 3055cc DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�7730205�, channel trading
�[36m2024-05-06 14:58:06.029 UTC 3055cd DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�7730205�
�[36m2024-05-06 14:58:06.029 UTC 3055ce DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�7730205�]
�[36m2024-05-06 14:58:06.029 UTC 3055cf DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.029 UTC 3055d0 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%007730205%00?attachments=true
�[36m2024-05-06 14:58:06.067 UTC 3055d1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.069 UTC 3055d2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.077 UTC 3055d3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.083 UTC 3055d4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.083 UTC 3055d5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.083 UTC 3055d6 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.084 UTC 3055d7 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.084 UTC 3055d8 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.084 UTC 3055d9 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�7808480�, channel trading
�[36m2024-05-06 14:58:06.084 UTC 3055da DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�7808480�
�[36m2024-05-06 14:58:06.084 UTC 3055db DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�7808480�]
�[36m2024-05-06 14:58:06.084 UTC 3055dc DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.084 UTC 3055dd DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%007808480%00?attachments=true
�[36m2024-05-06 14:58:06.131 UTC 3055de DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.133 UTC 3055df DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.141 UTC 3055e0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.147 UTC 3055e1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.147 UTC 3055e2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.147 UTC 3055e3 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.148 UTC 3055e4 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.148 UTC 3055e5 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.148 UTC 3055e6 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�7808481�, channel trading
�[36m2024-05-06 14:58:06.148 UTC 3055e7 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�7808481�
�[36m2024-05-06 14:58:06.148 UTC 3055e8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�7808481�]
�[36m2024-05-06 14:58:06.148 UTC 3055e9 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.148 UTC 3055ea DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%007808481%00?attachments=true
�[36m2024-05-06 14:58:06.177 UTC 3055eb DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.179 UTC 3055ec DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.185 UTC 3055ed DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.190 UTC 3055ee DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.190 UTC 3055ef DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.190 UTC 3055f0 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.191 UTC 3055f1 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.191 UTC 3055f2 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.191 UTC 3055f3 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8057385�, channel trading
�[36m2024-05-06 14:58:06.191 UTC 3055f4 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8057385�
�[36m2024-05-06 14:58:06.191 UTC 3055f5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8057385�]
�[36m2024-05-06 14:58:06.191 UTC 3055f6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.191 UTC 3055f7 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008057385%00?attachments=true
�[36m2024-05-06 14:58:06.220 UTC 3055f8 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.222 UTC 3055f9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.229 UTC 3055fa DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.238 UTC 3055fb DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.238 UTC 3055fc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.238 UTC 3055fd DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.239 UTC 3055fe DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.239 UTC 3055ff DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.239 UTC 305600 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8060585�, channel trading
�[36m2024-05-06 14:58:06.239 UTC 305601 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8060585�
�[36m2024-05-06 14:58:06.239 UTC 305602 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8060585�]
�[36m2024-05-06 14:58:06.239 UTC 305603 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.239 UTC 305604 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008060585%00?attachments=true
�[36m2024-05-06 14:58:06.276 UTC 305605 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.279 UTC 305606 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.290 UTC 305607 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.297 UTC 305608 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.297 UTC 305609 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.297 UTC 30560a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.298 UTC 30560b DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.298 UTC 30560c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.298 UTC 30560d DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8362508�, channel trading
�[36m2024-05-06 14:58:06.298 UTC 30560e DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8362508�
�[36m2024-05-06 14:58:06.298 UTC 30560f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8362508�]
�[36m2024-05-06 14:58:06.298 UTC 305610 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.298 UTC 305611 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008362508%00?attachments=true
�[36m2024-05-06 14:58:06.329 UTC 305612 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.331 UTC 305613 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.338 UTC 305614 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.344 UTC 305615 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.344 UTC 305616 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.344 UTC 305617 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.345 UTC 305618 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.345 UTC 305619 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.345 UTC 30561a DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8362509�, channel trading
�[36m2024-05-06 14:58:06.345 UTC 30561b DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8362509�
�[36m2024-05-06 14:58:06.345 UTC 30561c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8362509�]
�[36m2024-05-06 14:58:06.345 UTC 30561d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.346 UTC 30561e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008362509%00?attachments=true
�[36m2024-05-06 14:58:06.377 UTC 30561f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.379 UTC 305620 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.387 UTC 305621 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.394 UTC 305622 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.394 UTC 305623 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.394 UTC 305624 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.394 UTC 305625 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.395 UTC 305626 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.395 UTC 305627 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8367541�, channel trading
�[36m2024-05-06 14:58:06.395 UTC 305628 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8367541�
�[36m2024-05-06 14:58:06.395 UTC 305629 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8367541�]
�[36m2024-05-06 14:58:06.395 UTC 30562a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.395 UTC 30562b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008367541%00?attachments=true
�[36m2024-05-06 14:58:06.428 UTC 30562c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.430 UTC 30562d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.437 UTC 30562e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.443 UTC 30562f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.443 UTC 305630 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.443 UTC 305631 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.444 UTC 305632 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.444 UTC 305633 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.444 UTC 305634 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8367542�, channel trading
�[36m2024-05-06 14:58:06.444 UTC 305635 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8367542�
�[36m2024-05-06 14:58:06.444 UTC 305636 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8367542�]
�[36m2024-05-06 14:58:06.444 UTC 305637 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.444 UTC 305638 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008367542%00?attachments=true
�[36m2024-05-06 14:58:06.470 UTC 305639 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.472 UTC 30563a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.480 UTC 30563b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.489 UTC 30563c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.489 UTC 30563d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.489 UTC 30563e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.489 UTC 30563f DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.490 UTC 305640 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.490 UTC 305641 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�839002�, channel trading
�[36m2024-05-06 14:58:06.490 UTC 305642 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�839002�
�[36m2024-05-06 14:58:06.490 UTC 305643 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�839002�]
�[36m2024-05-06 14:58:06.490 UTC 305644 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.490 UTC 305645 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00839002%00?attachments=true
�[36m2024-05-06 14:58:06.518 UTC 305646 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.519 UTC 305647 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.529 UTC 305648 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.536 UTC 305649 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.536 UTC 30564a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.536 UTC 30564b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.537 UTC 30564c DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.537 UTC 30564d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.537 UTC 30564e DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�842202�, channel trading
�[36m2024-05-06 14:58:06.537 UTC 30564f DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�842202�
�[36m2024-05-06 14:58:06.537 UTC 305650 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�842202�]
�[36m2024-05-06 14:58:06.537 UTC 305651 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.537 UTC 305652 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00842202%00?attachments=true
�[36m2024-05-06 14:58:06.571 UTC 305653 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.573 UTC 305654 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.585 UTC 305655 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.592 UTC 305656 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.592 UTC 305657 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.593 UTC 305658 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.593 UTC 305659 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.593 UTC 30565a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.593 UTC 30565b DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8544811�, channel trading
�[36m2024-05-06 14:58:06.593 UTC 30565c DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8544811�
�[36m2024-05-06 14:58:06.593 UTC 30565d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8544811�]
�[36m2024-05-06 14:58:06.594 UTC 30565e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.594 UTC 30565f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008544811%00?attachments=true
�[36m2024-05-06 14:58:06.621 UTC 305660 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.622 UTC 305661 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.629 UTC 305662 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.634 UTC 305663 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.634 UTC 305664 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.634 UTC 305665 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.635 UTC 305666 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.635 UTC 305667 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.635 UTC 305668 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8544812�, channel trading
�[36m2024-05-06 14:58:06.635 UTC 305669 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8544812�
�[36m2024-05-06 14:58:06.635 UTC 30566a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8544812�]
�[36m2024-05-06 14:58:06.635 UTC 30566b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.635 UTC 30566c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008544812%00?attachments=true
�[36m2024-05-06 14:58:06.673 UTC 30566d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.675 UTC 30566e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.683 UTC 30566f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.688 UTC 305670 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.688 UTC 305671 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.688 UTC 305672 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.689 UTC 305673 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.689 UTC 305674 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.689 UTC 305675 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8973136�, channel trading
�[36m2024-05-06 14:58:06.689 UTC 305676 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8973136�
�[36m2024-05-06 14:58:06.689 UTC 305677 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8973136�]
�[36m2024-05-06 14:58:06.689 UTC 305678 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.689 UTC 305679 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008973136%00?attachments=true
�[36m2024-05-06 14:58:06.716 UTC 30567a DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.717 UTC 30567b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.724 UTC 30567c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.732 UTC 30567d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.732 UTC 30567e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.732 UTC 30567f DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.733 UTC 305680 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.733 UTC 305681 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.733 UTC 305682 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�8973137�, channel trading
�[36m2024-05-06 14:58:06.733 UTC 305683 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�8973137�
�[36m2024-05-06 14:58:06.733 UTC 305684 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�8973137�]
�[36m2024-05-06 14:58:06.733 UTC 305685 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.733 UTC 305686 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%008973137%00?attachments=true
�[36m2024-05-06 14:58:06.761 UTC 305687 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.762 UTC 305688 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.768 UTC 305689 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.773 UTC 30568a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.773 UTC 30568b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.773 UTC 30568c DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.774 UTC 30568d DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.774 UTC 30568e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.774 UTC 30568f DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9387703�, channel trading
�[36m2024-05-06 14:58:06.774 UTC 305690 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9387703�
�[36m2024-05-06 14:58:06.774 UTC 305691 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9387703�]
�[36m2024-05-06 14:58:06.774 UTC 305692 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.774 UTC 305693 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009387703%00?attachments=true
�[36m2024-05-06 14:58:06.804 UTC 305694 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.806 UTC 305695 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.812 UTC 305696 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.817 UTC 305697 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.817 UTC 305698 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.817 UTC 305699 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.818 UTC 30569a DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.818 UTC 30569b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.818 UTC 30569c DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9387704�, channel trading
�[36m2024-05-06 14:58:06.818 UTC 30569d DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9387704�
�[36m2024-05-06 14:58:06.818 UTC 30569e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9387704�]
�[36m2024-05-06 14:58:06.818 UTC 30569f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.818 UTC 3056a0 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009387704%00?attachments=true
�[36m2024-05-06 14:58:06.843 UTC 3056a1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.845 UTC 3056a2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.853 UTC 3056a3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.862 UTC 3056a4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.862 UTC 3056a5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.862 UTC 3056a6 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.863 UTC 3056a7 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.863 UTC 3056a8 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.863 UTC 3056a9 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9422975�, channel trading
�[36m2024-05-06 14:58:06.863 UTC 3056aa DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9422975�
�[36m2024-05-06 14:58:06.863 UTC 3056ab DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9422975�]
�[36m2024-05-06 14:58:06.863 UTC 3056ac DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.863 UTC 3056ad DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009422975%00?attachments=true
�[36m2024-05-06 14:58:06.895 UTC 3056ae DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.896 UTC 3056af DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.903 UTC 3056b0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.908 UTC 3056b1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.908 UTC 3056b2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.908 UTC 3056b3 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.909 UTC 3056b4 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.909 UTC 3056b5 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.909 UTC 3056b6 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9422976�, channel trading
�[36m2024-05-06 14:58:06.909 UTC 3056b7 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9422976�
�[36m2024-05-06 14:58:06.909 UTC 3056b8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9422976�]
�[36m2024-05-06 14:58:06.909 UTC 3056b9 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.909 UTC 3056ba DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009422976%00?attachments=true
�[36m2024-05-06 14:58:06.935 UTC 3056bb DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.936 UTC 3056bc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.942 UTC 3056bd DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.946 UTC 3056be DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.946 UTC 3056bf DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.946 UTC 3056c0 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.947 UTC 3056c1 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.947 UTC 3056c2 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.947 UTC 3056c3 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9474984�, channel trading
�[36m2024-05-06 14:58:06.947 UTC 3056c4 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9474984�
�[36m2024-05-06 14:58:06.947 UTC 3056c5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9474984�]
�[36m2024-05-06 14:58:06.947 UTC 3056c6 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.947 UTC 3056c7 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009474984%00?attachments=true
�[36m2024-05-06 14:58:06.971 UTC 3056c8 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:06.972 UTC 3056c9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:06.982 UTC 3056ca DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:06.990 UTC 3056cb DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:06.990 UTC 3056cc DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:06.990 UTC 3056cd DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:06.990 UTC 3056ce DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:06.990 UTC 3056cf DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:06.991 UTC 3056d0 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9478183�, channel trading
�[36m2024-05-06 14:58:06.991 UTC 3056d1 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9478183�
�[36m2024-05-06 14:58:06.991 UTC 3056d2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9478183�]
�[36m2024-05-06 14:58:06.991 UTC 3056d3 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:06.991 UTC 3056d4 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009478183%00?attachments=true
�[36m2024-05-06 14:58:07.020 UTC 3056d5 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.021 UTC 3056d6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.027 UTC 3056d7 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.032 UTC 3056d8 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.032 UTC 3056d9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.032 UTC 3056da DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.033 UTC 3056db DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.033 UTC 3056dc DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.033 UTC 3056dd DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9769204�, channel trading
�[36m2024-05-06 14:58:07.033 UTC 3056de DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9769204�
�[36m2024-05-06 14:58:07.033 UTC 3056df DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9769204�]
�[36m2024-05-06 14:58:07.033 UTC 3056e0 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.033 UTC 3056e1 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009769204%00?attachments=true
�[36m2024-05-06 14:58:07.056 UTC 3056e2 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.058 UTC 3056e3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.063 UTC 3056e4 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.068 UTC 3056e5 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.068 UTC 3056e6 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.068 UTC 3056e7 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.069 UTC 3056e8 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.069 UTC 3056e9 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.069 UTC 3056ea DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9769205�, channel trading
�[36m2024-05-06 14:58:07.069 UTC 3056eb DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9769205�
�[36m2024-05-06 14:58:07.069 UTC 3056ec DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9769205�]
�[36m2024-05-06 14:58:07.069 UTC 3056ed DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.069 UTC 3056ee DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009769205%00?attachments=true
�[36m2024-05-06 14:58:07.094 UTC 3056ef DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.096 UTC 3056f0 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.106 UTC 3056f1 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[35] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.114 UTC 3056f2 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.114 UTC 3056f3 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.114 UTC 3056f4 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.115 UTC 3056f5 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.115 UTC 3056f6 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.115 UTC 3056f7 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9788971�, channel trading
�[36m2024-05-06 14:58:07.115 UTC 3056f8 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9788971�
�[36m2024-05-06 14:58:07.115 UTC 3056f9 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9788971�]
�[36m2024-05-06 14:58:07.115 UTC 3056fa DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.115 UTC 3056fb DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009788971%00?attachments=true
�[36m2024-05-06 14:58:07.143 UTC 3056fc DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.145 UTC 3056fd DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.151 UTC 3056fe DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.157 UTC 3056ff DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.157 UTC 305700 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.157 UTC 305701 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.158 UTC 305702 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.158 UTC 305703 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.158 UTC 305704 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9792172�, channel trading
�[36m2024-05-06 14:58:07.158 UTC 305705 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9792172�
�[36m2024-05-06 14:58:07.158 UTC 305706 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9792172�]
�[36m2024-05-06 14:58:07.158 UTC 305707 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.158 UTC 305708 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009792172%00?attachments=true
�[36m2024-05-06 14:58:07.184 UTC 305709 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.185 UTC 30570a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.191 UTC 30570b DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[47] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.196 UTC 30570c DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.196 UTC 30570d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.197 UTC 30570e DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.197 UTC 30570f DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.197 UTC 305710 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.197 UTC 305711 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�993218�, channel trading
�[36m2024-05-06 14:58:07.197 UTC 305712 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�993218�
�[36m2024-05-06 14:58:07.197 UTC 305713 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�993218�]
�[36m2024-05-06 14:58:07.197 UTC 305714 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.197 UTC 305715 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00993218%00?attachments=true
�[36m2024-05-06 14:58:07.228 UTC 305716 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.229 UTC 305717 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.235 UTC 305718 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.240 UTC 305719 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.240 UTC 30571a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.241 UTC 30571b DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.241 UTC 30571c DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.241 UTC 30571d DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.241 UTC 30571e DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�996419�, channel trading
�[36m2024-05-06 14:58:07.241 UTC 30571f DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�996419�
�[36m2024-05-06 14:58:07.241 UTC 305720 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�996419�]
�[36m2024-05-06 14:58:07.241 UTC 305721 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.242 UTC 305722 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%00996419%00?attachments=true
�[36m2024-05-06 14:58:07.272 UTC 305723 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.273 UTC 305724 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.281 UTC 305725 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[59] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.287 UTC 305726 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.287 UTC 305727 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.287 UTC 305728 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.287 UTC 305729 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.287 UTC 30572a DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.287 UTC 30572b DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9985555�, channel trading
�[36m2024-05-06 14:58:07.287 UTC 30572c DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9985555�
�[36m2024-05-06 14:58:07.288 UTC 30572d DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9985555�]
�[36m2024-05-06 14:58:07.288 UTC 30572e DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.288 UTC 30572f DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009985555%00?attachments=true
�[36m2024-05-06 14:58:07.315 UTC 305730 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.316 UTC 305731 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.322 UTC 305732 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.328 UTC 305733 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.328 UTC 305734 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.328 UTC 305735 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.329 UTC 305736 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready
�[36m2024-05-06 14:58:07.329 UTC 305737 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling GET_STATE from chaincode
�[36m2024-05-06 14:58:07.329 UTC 305738 DEBU�[0m [chaincode] �[36;1mHandleGetState�[0m -> [23fd4716] getting state for chaincode t2804a, key �piece�1176�9985556�, channel trading
�[36m2024-05-06 14:58:07.329 UTC 305739 DEBU�[0m [statecouchdb] �[36;1mGetState�[0m -> GetState(). ns=t2804a, key=�piece�1176�9985556�
�[36m2024-05-06 14:58:07.329 UTC 30573a DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Entering ReadDoc()  id=[�piece�1176�9985556�]
�[36m2024-05-06 14:58:07.329 UTC 30573b DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=GET  url=http://10.0.0.7:5984  dbName=trading_t2804a
�[36m2024-05-06 14:58:07.329 UTC 30573c DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984/trading_t2804a/%00piece%001176%009985556%00?attachments=true
�[36m2024-05-06 14:58:07.358 UTC 30573d DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.359 UTC 30573e DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Type:[application/json]]
�[36m2024-05-06 14:58:07.365 UTC 30573f DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] part header=map[Content-Disposition:[attachment; filename="valueBytes"] Content-Length:[31] Content-Type:[application/octet-stream]]
�[36m2024-05-06 14:58:07.370 UTC 305740 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Retrieved attachment data
�[36m2024-05-06 14:58:07.370 UTC 305741 DEBU�[0m [couchdb] �[36;1mreadDoc�[0m -> [trading_t2804a] Exiting ReadDoc()
�[36m2024-05-06 14:58:07.370 UTC 305742 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed GET_STATE. Sending RESPONSE
�[36m2024-05-06 14:58:07.371 UTC 305743 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready
�[36m2024-05-06 14:58:07.371 UTC 305744 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] handling QUERY_STATE_CLOSE from chaincode
�[36m2024-05-06 14:58:07.371 UTC 305745 DEBU�[0m [chaincode] �[36;1mHandleTransaction�[0m -> [23fd4716] Completed QUERY_STATE_CLOSE. Sending RESPONSE
�[36m2024-05-06 14:58:07.371 UTC 305746 DEBU�[0m [chaincode] �[36;1mhandleMessage�[0m -> [23fd4716] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready
�[36m2024-05-06 14:58:07.372 UTC 305747 DEBU�[0m [chaincode] �[36;1mNotify�[0m -> [23fd4716] notifying Txid:23fd4716181c0d51a33e2052eaf4a4804df927a2a964f4c2a25a170fd1fab498, channelID:trading
�[36m2024-05-06 14:58:07.372 UTC 305748 DEBU�[0m [chaincode] �[36;1mExecute�[0m -> Exit
�[34m2024-05-06 14:58:07.372 UTC 305749 INFO�[0m [endorser] �[34;1mcallChaincode�[0m -> finished chaincode: t2804a duration: 5009ms channel=trading txID=23fd4716
�[36m2024-05-06 14:58:07.372 UTC 30574a DEBU�[0m [lockbasedtxmgr] �[36;1mGetTxSimulationResults�[0m -> Simulation completed, getting simulation results
�[36m2024-05-06 14:58:07.372 UTC 30574b DEBU�[0m [endorser] �[36;1mbuildChaincodeInterest�[0m -> ccInterest chaincodes:<name:"t2804a" > 
�[36m2024-05-06 14:58:07.372 UTC 30574c DEBU�[0m [lockbasedtxmgr] �[36;1mDone�[0m -> Done with transaction simulation / query execution [23fd4716181c0d51a33e2052eaf4a4804df927a2a964f4c2a25a170fd1fab498]
�[36m2024-05-06 14:58:07.372 UTC 30574d DEBU�[0m [endorser] �[36;1mProcessProposalSuccessfullyOrError�[0m -> escc for chaincode t2804a is escc channel=trading txID=23fd4716
�[36m2024-05-06 14:58:07.372 UTC 30574e DEBU�[0m [lockbasedtxmgr] �[36;1mDone�[0m -> Done with transaction simulation / query execution [23fd4716181c0d51a33e2052eaf4a4804df927a2a964f4c2a25a170fd1fab498]
�[34m2024-05-06 14:58:07.372 UTC 30574f INFO�[0m [comm.grpc.server] �[34;1m1�[0m -> unary call completed grpc.service=gateway.Gateway grpc.method=Evaluate grpc.request_deadline=2024-05-06T15:00:02.359Z grpc.peer_address=10.20.2.15:58362 grpc.code=OK grpc.call_duration=5.01329917s
�[36m2024-05-06 14:58:07.523 UTC 305750 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=HEAD  url=http://10.0.0.7:5984  dbName=
�[36m2024-05-06 14:58:07.523 UTC 305752 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984
�[36m2024-05-06 14:58:07.523 UTC 305751 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Entering handleRequest()  method=HEAD  url=http://10.0.0.7:5984  dbName=
�[36m2024-05-06 14:58:07.523 UTC 305753 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Request URL: http://10.0.0.7:5984
�[36m2024-05-06 14:58:07.527 UTC 305754 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()
�[36m2024-05-06 14:58:07.535 UTC 305755 DEBU�[0m [couchdb] �[36;1mhandleRequest�[0m -> Exiting handleRequest()

this specific request took 5 seconds whereas earlier requests take around 200ms which is like 25x less

@luca-simonetti
Copy link
Author

from the couchdb repo I found this, which might be of interest
apache/couchdb#1319 (comment)

@luca-simonetti
Copy link
Author

we used a different strategy for now, because the connection through hyperledger degrades really quickly so we for the reads we connect directly to the couchdb and this way couchdb doesn't suffer anymore.
Probably as I wrote before it's the way connections are handled by hyperledger....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants