@@ -331,18 +331,20 @@ It is returned in the callback to load_chaincode() and contains all your cc func
331331 CUSTOM_FUNCTION_NAME2 : function (args , cb ){etc... };
332332 CUSTOM_FUNCTION_NAME3 : function (args , cb ){etc... };
333333 ^^ etc...
334- read : function (name , cb ), // read variable
335- query: function(args, cb), // ^^
336- write: function(name, value, cb), // write/create variable
337- remove: function(name, cb), // delete variable
338- deploy: function(func, args, path, cb), // deploy loaded chaincode
339- details:{ // input options get stored here, sometimes handy
340- deployed_name: ' ' ,
341- func: [],
342- unzip_dir: ' ' ,
334+ read : function (name , cb ), // read variable
335+ query: function(args, cb), // ^^
336+ write: function(name, value, cb), // write/create variable
337+ remove: function(name, cb), // delete variable
338+ deploy: function(func, args, path, cb), // deploy loaded chaincode
339+ details:{ // input options get stored here, sometimes handy
340+ deployed_name: ' ' , // hash of deployed chaincode
341+ func: [], // array of function names found
343342 git_url: ' ' ,
344- peers: [],
345- vars: [],
343+ peers: [], // peer list provided in network()
344+ timestamp: 0 , // unix timestamp in ms of parsing
345+ users: [], // users provided in load()
346+ vars: [], // tbd
347+ unzip_dir: ' ' ,
346348 zip_url: ' ' ,
347349 }
348350 };
0 commit comments