├── LICENSE ├── README.md ├── fabric ├── .dockerignore ├── .gitattributes ├── .gitignore ├── .gitreview ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bccsp │ ├── aesopts.go │ ├── bccsp.go │ ├── bccsp_test.go │ ├── ecdsaopts.go │ ├── factory │ │ ├── factory.go │ │ ├── factory_test.go │ │ ├── nopkcs11.go │ │ ├── opts.go │ │ ├── opts_test.go │ │ ├── pkcs11.go │ │ ├── pkcs11_test.go │ │ ├── pkcs11factory.go │ │ ├── pkcs11factory_test.go │ │ ├── swfactory.go │ │ └── swfactory_test.go │ ├── hashopts.go │ ├── keystore.go │ ├── mocks │ │ └── mocks.go │ ├── opts.go │ ├── pkcs11 │ │ ├── conf.go │ │ ├── ecdsa.go │ │ ├── ecdsa_test.go │ │ ├── ecdsakey.go │ │ ├── ecdsakey_test.go │ │ ├── impl.go │ │ ├── impl_test.go │ │ ├── pkcs11.go │ │ └── pkcs11_test.go │ ├── rsaopts.go │ ├── signer │ │ ├── signer.go │ │ └── signer_test.go │ ├── sw │ │ ├── aes.go │ │ ├── aes_test.go │ │ ├── aeskey.go │ │ ├── conf.go │ │ ├── dummyks.go │ │ ├── dummyks_test.go │ │ ├── ecdsa.go │ │ ├── ecdsa_test.go │ │ ├── ecdsakey.go │ │ ├── enc_test.go │ │ ├── fileks.go │ │ ├── fileks_test.go │ │ ├── hash.go │ │ ├── hash_test.go │ │ ├── impl.go │ │ ├── impl_test.go │ │ ├── internals.go │ │ ├── keyderiv.go │ │ ├── keyderiv_test.go │ │ ├── keygen.go │ │ ├── keygen_test.go │ │ ├── keyimport.go │ │ ├── keyimport_test.go │ │ ├── mocks │ │ │ └── mocks.go │ │ ├── rsa.go │ │ ├── rsa_test.go │ │ ├── rsakey.go │ │ ├── sign_test.go │ │ ├── sw_test.go │ │ └── verify_test.go │ └── utils │ │ ├── errs.go │ │ ├── errs_test.go │ │ ├── io.go │ │ ├── io_test.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── slice.go │ │ ├── slice_test.go │ │ ├── x509.go │ │ └── x509_test.go ├── bddtests │ ├── .behaverc │ ├── README.md │ ├── bddtests_test.go │ ├── chaincode.go │ ├── common │ │ ├── __init__.py │ │ ├── common_pb2.py │ │ ├── common_pb2_grpc.py │ │ ├── configtx_pb2.py │ │ ├── configtx_pb2_grpc.py │ │ ├── configuration_pb2.py │ │ ├── configuration_pb2_grpc.py │ │ ├── ledger_pb2.py │ │ ├── ledger_pb2_grpc.py │ │ ├── policies_pb2.py │ │ └── policies_pb2_grpc.py │ ├── compose.go │ ├── conn.go │ ├── context.go │ ├── context_bootstrap.go │ ├── context_endorser.go │ ├── dc-base.yml │ ├── dc-orderer-base.yml │ ├── dc-orderer-kafka-base.yml │ ├── dc-orderer-kafka.yml │ ├── dc-peer-base.yml │ ├── dc-peer-couchdb.yml │ ├── docker.go │ ├── environment.py │ ├── features │ │ ├── bootstrap.feature │ │ ├── endorser.feature │ │ └── orderer.feature │ ├── msp │ │ ├── __init__.py │ │ ├── identities_pb2.py │ │ ├── identities_pb2_grpc.py │ │ ├── msp_config_pb2.py │ │ ├── msp_config_pb2_grpc.py │ │ ├── msp_principal_pb2.py │ │ └── msp_principal_pb2_grpc.py │ ├── orderer │ │ ├── __init__.py │ │ ├── ab_pb2.py │ │ ├── ab_pb2_grpc.py │ │ ├── configuration_pb2.py │ │ ├── configuration_pb2_grpc.py │ │ ├── kafka_pb2.py │ │ └── kafka_pb2_grpc.py │ ├── peer │ │ ├── __init__.py │ │ ├── admin_pb2.py │ │ ├── admin_pb2_grpc.py │ │ ├── chaincode_event_pb2.py │ │ ├── chaincode_event_pb2_grpc.py │ │ ├── chaincode_pb2.py │ │ ├── chaincode_pb2_grpc.py │ │ ├── chaincode_shim_pb2.py │ │ ├── chaincode_shim_pb2_grpc.py │ │ ├── configuration_pb2.py │ │ ├── configuration_pb2_grpc.py │ │ ├── events_pb2.py │ │ ├── events_pb2_grpc.py │ │ ├── peer_pb2.py │ │ ├── peer_pb2_grpc.py │ │ ├── proposal_pb2.py │ │ ├── proposal_pb2_grpc.py │ │ ├── proposal_response_pb2.py │ │ ├── proposal_response_pb2_grpc.py │ │ ├── query_pb2.py │ │ ├── query_pb2_grpc.py │ │ ├── transaction_pb2.py │ │ └── transaction_pb2_grpc.py │ ├── regression │ │ ├── README.md │ │ ├── daily_test_suite.sh │ │ ├── go │ │ │ ├── README.md │ │ │ ├── ote │ │ │ │ ├── README.md │ │ │ │ ├── docker_images.sh │ │ │ │ ├── driver.sh │ │ │ │ ├── json2yml.js │ │ │ │ ├── network.json │ │ │ │ ├── ote.go │ │ │ │ └── ote_test.go │ │ │ └── tdk │ │ │ │ ├── CAT │ │ │ │ └── README.md │ │ │ │ └── README.md │ │ ├── longrun_test_suite.sh │ │ ├── node │ │ │ ├── README.md │ │ │ └── performance │ │ │ │ └── README.md │ │ └── results │ │ │ └── README.md │ ├── scripts │ │ └── wait-for-it.sh │ ├── steps │ │ ├── __init__.py │ │ ├── bdd_grpc_util.py │ │ ├── bdd_test_util.py │ │ ├── bootstrap_impl.py │ │ ├── bootstrap_util.py │ │ ├── compose.py │ │ ├── contexthelper.py │ │ ├── coverage.py │ │ ├── docgen.py │ │ ├── endorser_impl.py │ │ ├── endorser_util.py │ │ ├── orderer_impl.py │ │ └── orderer_util.py │ ├── templates │ │ └── html │ │ │ ├── appendix-py.html │ │ │ ├── cli.html │ │ │ ├── composition-py.html │ │ │ ├── directory-py.html │ │ │ ├── directory.html │ │ │ ├── error.html │ │ │ ├── graph.html │ │ │ ├── header.html │ │ │ ├── main.html │ │ │ ├── org-py.html │ │ │ ├── org.html │ │ │ ├── protobuf-py.html │ │ │ ├── protobuf.html │ │ │ ├── report.css │ │ │ ├── scenario.html │ │ │ ├── step.html │ │ │ ├── tag.html │ │ │ └── user.html │ ├── tlsca.cert │ ├── tlsca.priv │ ├── users.go │ └── util.go ├── ci.properties ├── common │ ├── cauthdsl │ │ ├── cauthdsl.go │ │ ├── cauthdsl_builder.go │ │ ├── cauthdsl_test.go │ │ ├── policy.go │ │ ├── policy_test.go │ │ ├── policy_util.go │ │ ├── policyparser.go │ │ └── policyparser_test.go │ ├── config │ │ ├── api.go │ │ ├── application.go │ │ ├── application_test.go │ │ ├── application_util.go │ │ ├── applicationorg.go │ │ ├── applicationorg_test.go │ │ ├── channel.go │ │ ├── channel_test.go │ │ ├── channel_util.go │ │ ├── consortium.go │ │ ├── consortium_test.go │ │ ├── consortiums.go │ │ ├── consortiums_test.go │ │ ├── consortiums_util.go │ │ ├── msp │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── config_util.go │ │ ├── orderer.go │ │ ├── orderer_test.go │ │ ├── orderer_util.go │ │ ├── organization.go │ │ ├── organization_test.go │ │ ├── proposer.go │ │ ├── proposer_test.go │ │ ├── realconfig_test.go │ │ ├── root.go │ │ ├── root_test.go │ │ ├── standardvalues.go │ │ └── standardvalues_test.go │ ├── configtx │ │ ├── api │ │ │ └── api.go │ │ ├── compare.go │ │ ├── compare_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── configmap.go │ │ ├── configmap_test.go │ │ ├── initializer.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ ├── template.go │ │ ├── template_test.go │ │ ├── test │ │ │ ├── helper.go │ │ │ └── helper_test.go │ │ ├── tool │ │ │ ├── configtxgen │ │ │ │ ├── main.go │ │ │ │ ├── main_test.go │ │ │ │ └── metadata │ │ │ │ │ ├── metadata.go │ │ │ │ │ └── metadata_test.go │ │ │ ├── localconfig │ │ │ │ └── config.go │ │ │ └── provisional │ │ │ │ ├── provisional.go │ │ │ │ └── provisional_test.go │ │ ├── update.go │ │ ├── update_test.go │ │ ├── util.go │ │ └── util_test.go │ ├── crypto │ │ ├── random.go │ │ └── signer.go │ ├── errors │ │ ├── codes.go │ │ ├── errors.go │ │ └── errors_test.go │ ├── flogging │ │ ├── grpclogger.go │ │ ├── grpclogger_test.go │ │ ├── logging.go │ │ └── logging_test.go │ ├── genesis │ │ ├── genesis.go │ │ └── genesis_test.go │ ├── ledger │ │ ├── blkstorage │ │ │ ├── blockstorage.go │ │ │ └── fsblkstorage │ │ │ │ ├── block_serialization.go │ │ │ │ ├── block_serialization_test.go │ │ │ │ ├── block_stream.go │ │ │ │ ├── block_stream_test.go │ │ │ │ ├── blockfile_helper.go │ │ │ │ ├── blockfile_helper_test.go │ │ │ │ ├── blockfile_mgr.go │ │ │ │ ├── blockfile_mgr_test.go │ │ │ │ ├── blockfile_rw.go │ │ │ │ ├── blockfile_scan_test.go │ │ │ │ ├── blockindex.go │ │ │ │ ├── blockindex_test.go │ │ │ │ ├── blocks_itr.go │ │ │ │ ├── blocks_itr_test.go │ │ │ │ ├── config.go │ │ │ │ ├── fs_blockstore.go │ │ │ │ ├── fs_blockstore_provider.go │ │ │ │ ├── fs_blockstore_provider_test.go │ │ │ │ ├── fs_blockstore_test.go │ │ │ │ └── pkg_test.go │ │ ├── ledger_interface.go │ │ ├── testutil │ │ │ ├── test_helper.go │ │ │ ├── test_util.go │ │ │ └── test_util_test.go │ │ └── util │ │ │ ├── ioutil.go │ │ │ ├── ioutil_test.go │ │ │ ├── leveldbhelper │ │ │ ├── leveldb_helper.go │ │ │ ├── leveldb_helper_test.go │ │ │ ├── leveldb_provider.go │ │ │ ├── leveldb_provider_test.go │ │ │ └── pkg_test.go │ │ │ ├── protobuf_util.go │ │ │ ├── protobuf_util_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── localmsp │ │ ├── signer.go │ │ └── signer_test.go │ ├── metadata │ │ └── metadata.go │ ├── mocks │ │ ├── config │ │ │ ├── channel.go │ │ │ ├── channel_test.go │ │ │ ├── orderer.go │ │ │ └── orderer_test.go │ │ ├── configtx │ │ │ ├── configtx.go │ │ │ └── configtx_test.go │ │ ├── crypto │ │ │ ├── localsigner.go │ │ │ └── localsigner_test.go │ │ ├── ledger │ │ │ └── queryexecutor.go │ │ ├── msp │ │ │ ├── noopmsp.go │ │ │ └── noopmsp_test.go │ │ ├── peer │ │ │ ├── mockccstream.go │ │ │ └── mockpeerccsupport.go │ │ ├── policies │ │ │ ├── policies.go │ │ │ └── policies_test.go │ │ └── scc │ │ │ └── sccprovider.go │ ├── policies │ │ ├── implicitmeta.go │ │ ├── implicitmeta_test.go │ │ ├── implicitmeta_util.go │ │ ├── policy.go │ │ └── policy_test.go │ ├── tools │ │ ├── configtxlator │ │ │ ├── main.go │ │ │ ├── metadata │ │ │ │ ├── metadata.go │ │ │ │ └── metadata_test.go │ │ │ ├── rest │ │ │ │ ├── configtxlator_handlers.go │ │ │ │ ├── configtxlator_handlers_test.go │ │ │ │ ├── protolator_handlers.go │ │ │ │ ├── protolator_handlers_test.go │ │ │ │ └── router.go │ │ │ ├── sanitycheck │ │ │ │ ├── sanitycheck.go │ │ │ │ └── sanitycheck_test.go │ │ │ └── update │ │ │ │ ├── update.go │ │ │ │ └── update_test.go │ │ ├── cryptogen │ │ │ ├── ca │ │ │ │ ├── ca_test.go │ │ │ │ └── generator.go │ │ │ ├── csp │ │ │ │ ├── csp.go │ │ │ │ └── csp_test.go │ │ │ ├── main.go │ │ │ ├── metadata │ │ │ │ ├── metadata.go │ │ │ │ └── metadata_test.go │ │ │ └── msp │ │ │ │ ├── generator.go │ │ │ │ └── msp_test.go │ │ └── protolator │ │ │ ├── api.go │ │ │ ├── blackbox_test.go │ │ │ ├── dynamic.go │ │ │ ├── dynamic_test.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── nested.go │ │ │ ├── nested_test.go │ │ │ ├── statically_opaque.go │ │ │ ├── statically_opaque_test.go │ │ │ ├── testprotos │ │ │ ├── sample.go │ │ │ ├── sample.pb.go │ │ │ └── sample.proto │ │ │ ├── variably_opaque.go │ │ │ └── variably_opaque_test.go │ ├── util │ │ ├── net.go │ │ ├── net_test.go │ │ ├── utils.go │ │ └── utils_test.go │ └── viperutil │ │ ├── config_test.go │ │ └── config_util.go ├── core │ ├── admin.go │ ├── admin_test.go │ ├── chaincode │ │ ├── ccproviderimpl.go │ │ ├── chaincode_support.go │ │ ├── chaincode_support_test.go │ │ ├── chaincodeexec.go │ │ ├── chaincodetest.yaml │ │ ├── concurrency_test.go │ │ ├── exectransaction.go │ │ ├── exectransaction_test.go │ │ ├── handler.go │ │ ├── multichains_test.go │ │ ├── platforms │ │ │ ├── car │ │ │ │ ├── platform.go │ │ │ │ └── test │ │ │ │ │ ├── org.hyperledger.chaincode.example02-0.1-SNAPSHOT.car │ │ │ │ │ └── platform_test.go │ │ │ ├── golang │ │ │ │ ├── env.go │ │ │ │ ├── env_test.go │ │ │ │ ├── list.go │ │ │ │ ├── list_test.go │ │ │ │ ├── package.go │ │ │ │ ├── platform.go │ │ │ │ └── platform_test.go │ │ │ ├── java │ │ │ │ ├── hash.go │ │ │ │ ├── package.go │ │ │ │ ├── platform.go │ │ │ │ └── test │ │ │ │ │ └── java_test.go │ │ │ ├── platforms.go │ │ │ └── util │ │ │ │ ├── hashtestfiles1 │ │ │ │ ├── a.txt │ │ │ │ ├── a │ │ │ │ │ ├── a1.txt │ │ │ │ │ └── a2.txt │ │ │ │ ├── b.txt │ │ │ │ └── b │ │ │ │ │ ├── c.txt │ │ │ │ │ └── c │ │ │ │ │ └── c1.txt │ │ │ │ ├── hashtestfiles2 │ │ │ │ ├── x.txt │ │ │ │ ├── x │ │ │ │ │ ├── z.txt │ │ │ │ │ └── z │ │ │ │ │ │ └── z1.txt │ │ │ │ ├── y.txt │ │ │ │ └── y │ │ │ │ │ ├── y1.txt │ │ │ │ │ └── y2.txt │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ ├── shim │ │ │ ├── chaincode.go │ │ │ ├── handler.go │ │ │ ├── inprocstream.go │ │ │ ├── interfaces.go │ │ │ ├── java │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── javabuild.sh │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ ├── commons-logging.properties │ │ │ │ │ │ └── org │ │ │ │ │ │ └── hyperledger │ │ │ │ │ │ └── fabric │ │ │ │ │ │ └── shim │ │ │ │ │ │ ├── Chaincode.java │ │ │ │ │ │ ├── ChaincodeBase.java │ │ │ │ │ │ ├── ChaincodeStub.java │ │ │ │ │ │ ├── fsm │ │ │ │ │ │ ├── CBDesc.java │ │ │ │ │ │ ├── Callback.java │ │ │ │ │ │ ├── CallbackKey.java │ │ │ │ │ │ ├── CallbackType.java │ │ │ │ │ │ ├── Event.java │ │ │ │ │ │ ├── EventDesc.java │ │ │ │ │ │ ├── EventKey.java │ │ │ │ │ │ ├── FSM.java │ │ │ │ │ │ ├── Transitioner.java │ │ │ │ │ │ └── exceptions │ │ │ │ │ │ │ ├── AsyncException.java │ │ │ │ │ │ │ ├── CancelledException.java │ │ │ │ │ │ │ ├── InTrasistionException.java │ │ │ │ │ │ │ ├── InvalidEventException.java │ │ │ │ │ │ │ ├── NoTransitionException.java │ │ │ │ │ │ │ ├── NotInTransitionException.java │ │ │ │ │ │ │ └── UnknownEventException.java │ │ │ │ │ │ ├── helper │ │ │ │ │ │ └── Channel.java │ │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── ChaincodeStubImpl.java │ │ │ │ │ │ ├── Handler.java │ │ │ │ │ │ ├── KeyModificationImpl.java │ │ │ │ │ │ ├── KeyValueImpl.java │ │ │ │ │ │ ├── NextStateInfo.java │ │ │ │ │ │ └── QueryResultsIteratorImpl.java │ │ │ │ │ │ └── ledger │ │ │ │ │ │ ├── CompositeKey.java │ │ │ │ │ │ ├── CompositeKeyFormatException.java │ │ │ │ │ │ ├── KeyModification.java │ │ │ │ │ │ ├── KeyValue.java │ │ │ │ │ │ └── QueryResultsIterator.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── hyperledger │ │ │ │ │ └── fabric │ │ │ │ │ └── shim │ │ │ │ │ ├── impl │ │ │ │ │ ├── KeyModificationImplTest.java │ │ │ │ │ └── KeyValueImplTest.java │ │ │ │ │ └── ledger │ │ │ │ │ └── CompositeKeyTest.java │ │ │ ├── mockstub.go │ │ │ ├── mockstub_test.go │ │ │ ├── response.go │ │ │ └── shim_test.go │ │ ├── systemchaincode_test.go │ │ ├── testdata │ │ │ ├── server1.key │ │ │ └── server1.pem │ │ └── upgrade_test.go │ ├── comm │ │ ├── config.go │ │ ├── config_test.go │ │ ├── connection.go │ │ ├── connection_test.go │ │ ├── creds.go │ │ ├── creds_test.go │ │ ├── producer.go │ │ ├── producer_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ └── testdata │ │ │ ├── certs │ │ │ ├── Org1-cert.pem │ │ │ ├── Org1-child1-cert.pem │ │ │ ├── Org1-child1-client1-cert.pem │ │ │ ├── Org1-child1-client1-key.pem │ │ │ ├── Org1-child1-client2-cert.pem │ │ │ ├── Org1-child1-client2-key.pem │ │ │ ├── Org1-child1-key.pem │ │ │ ├── Org1-child1-server1-cert.pem │ │ │ ├── Org1-child1-server1-key.pem │ │ │ ├── Org1-child1-server2-cert.pem │ │ │ ├── Org1-child1-server2-key.pem │ │ │ ├── Org1-child2-cert.pem │ │ │ ├── Org1-child2-client1-cert.pem │ │ │ ├── Org1-child2-client1-key.pem │ │ │ ├── Org1-child2-client2-cert.pem │ │ │ ├── Org1-child2-client2-key.pem │ │ │ ├── Org1-child2-key.pem │ │ │ ├── Org1-child2-server1-cert.pem │ │ │ ├── Org1-child2-server1-key.pem │ │ │ ├── Org1-child2-server2-cert.pem │ │ │ ├── Org1-child2-server2-key.pem │ │ │ ├── Org1-client1-cert.pem │ │ │ ├── Org1-client1-key.pem │ │ │ ├── Org1-client2-cert.pem │ │ │ ├── Org1-client2-key.pem │ │ │ ├── Org1-key.pem │ │ │ ├── Org1-server1-cert.pem │ │ │ ├── Org1-server1-key.pem │ │ │ ├── Org1-server2-cert.pem │ │ │ ├── Org1-server2-key.pem │ │ │ ├── Org2-cert.pem │ │ │ ├── Org2-child1-cert.pem │ │ │ ├── Org2-child1-client1-cert.pem │ │ │ ├── Org2-child1-client1-key.pem │ │ │ ├── Org2-child1-client2-cert.pem │ │ │ ├── Org2-child1-client2-key.pem │ │ │ ├── Org2-child1-key.pem │ │ │ ├── Org2-child1-server1-cert.pem │ │ │ ├── Org2-child1-server1-key.pem │ │ │ ├── Org2-child1-server2-cert.pem │ │ │ ├── Org2-child1-server2-key.pem │ │ │ ├── Org2-child2-cert.pem │ │ │ ├── Org2-child2-client1-cert.pem │ │ │ ├── Org2-child2-client1-key.pem │ │ │ ├── Org2-child2-client2-cert.pem │ │ │ ├── Org2-child2-client2-key.pem │ │ │ ├── Org2-child2-key.pem │ │ │ ├── Org2-child2-server1-cert.pem │ │ │ ├── Org2-child2-server1-key.pem │ │ │ ├── Org2-child2-server2-cert.pem │ │ │ ├── Org2-child2-server2-key.pem │ │ │ ├── Org2-client1-cert.pem │ │ │ ├── Org2-client1-key.pem │ │ │ ├── Org2-client2-cert.pem │ │ │ ├── Org2-client2-key.pem │ │ │ ├── Org2-key.pem │ │ │ ├── Org2-server1-cert.pem │ │ │ ├── Org2-server1-key.pem │ │ │ ├── Org2-server2-cert.pem │ │ │ ├── Org2-server2-key.pem │ │ │ └── generate.go │ │ │ ├── grpc │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ │ ├── impersonation │ │ │ ├── orgA │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ └── orgB │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── prime256v1-openssl-cert.pem │ │ │ └── prime256v1-openssl-key.pem │ ├── committer │ │ ├── committer.go │ │ ├── committer_impl.go │ │ ├── committer_test.go │ │ └── txvalidator │ │ │ ├── txvalidator_test.go │ │ │ ├── validator.go │ │ │ └── validator_test.go │ ├── common │ │ ├── ccpackage │ │ │ ├── ccpackage.go │ │ │ └── ccpackage_test.go │ │ ├── ccprovider │ │ │ ├── ccinfocache.go │ │ │ ├── ccinfocache_test.go │ │ │ ├── ccprovider.go │ │ │ ├── cdspackage.go │ │ │ ├── cdspackage_test.go │ │ │ ├── sigcdspackage.go │ │ │ └── sigcdspackage_test.go │ │ ├── sysccprovider │ │ │ └── sysccprovider.go │ │ └── validation │ │ │ ├── config_test.go │ │ │ ├── fullflow_test.go │ │ │ └── msgvalidation.go │ ├── config │ │ ├── config.go │ │ └── config_test.go │ ├── container │ │ ├── api │ │ │ └── core.go │ │ ├── ccintf │ │ │ ├── ccintf.go │ │ │ └── ccintf_test.go │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── dockercontroller │ │ │ ├── dockercontroller.go │ │ │ └── dockercontroller_test.go │ │ ├── inproccontroller │ │ │ ├── inproccontroller.go │ │ │ └── inprocstream.go │ │ ├── util │ │ │ ├── dockerutil.go │ │ │ ├── dockerutil_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ │ ├── vm.go │ │ └── vm_test.go │ ├── deliverservice │ │ ├── blocksprovider │ │ │ ├── blocksprovider.go │ │ │ └── blocksprovider_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── deliveryclient.go │ │ ├── deliveryclient_test.go │ │ ├── mocks │ │ │ ├── blocksprovider.go │ │ │ ├── blocksprovider_test.go │ │ │ ├── orderer.go │ │ │ └── orderer_test.go │ │ └── requester.go │ ├── endorser │ │ ├── endorser.go │ │ ├── endorser_test.go │ │ └── endorser_test.yaml │ ├── fsm.go │ ├── fsm_test.go │ ├── ledger │ │ ├── kvledger │ │ │ ├── example │ │ │ │ ├── app.go │ │ │ │ ├── committer.go │ │ │ │ ├── consenter.go │ │ │ │ ├── main │ │ │ │ │ └── example.go │ │ │ │ └── marble_app.go │ │ │ ├── history │ │ │ │ └── historydb │ │ │ │ │ ├── histmgr_helper.go │ │ │ │ │ ├── histmgr_helper_test.go │ │ │ │ │ ├── historydb.go │ │ │ │ │ └── historyleveldb │ │ │ │ │ ├── historyleveldb.go │ │ │ │ │ ├── historyleveldb_query_executer.go │ │ │ │ │ ├── historyleveldb_test.go │ │ │ │ │ └── pkg_test.go │ │ │ ├── kv_ledger.go │ │ │ ├── kv_ledger_provider.go │ │ │ ├── kv_ledger_provider_test.go │ │ │ ├── kv_ledger_test.go │ │ │ ├── marble_example │ │ │ │ └── main │ │ │ │ │ └── marble_example.go │ │ │ ├── pkg_test.go │ │ │ ├── recovery.go │ │ │ └── txmgmt │ │ │ │ ├── rwsetutil │ │ │ │ ├── query_results_helper.go │ │ │ │ ├── query_results_helper_test.go │ │ │ │ ├── rwset_builder.go │ │ │ │ ├── rwset_builder_test.go │ │ │ │ ├── rwset_proto_util.go │ │ │ │ └── rwset_proto_util_test.go │ │ │ │ ├── statedb │ │ │ │ ├── commontests │ │ │ │ │ └── test_common.go │ │ │ │ ├── statecouchdb │ │ │ │ │ ├── query_wrapper.go │ │ │ │ │ ├── query_wrapper_test.go │ │ │ │ │ ├── statecouchdb.go │ │ │ │ │ ├── statecouchdb_test.go │ │ │ │ │ └── statecouchdb_test_export.go │ │ │ │ ├── statedb.go │ │ │ │ ├── statedb_test.go │ │ │ │ ├── stateleveldb │ │ │ │ │ ├── stateleveldb.go │ │ │ │ │ ├── stateleveldb_test.go │ │ │ │ │ └── stateleveldb_test_export.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ │ ├── txmgr │ │ │ │ ├── lockbasedtxmgr │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── lockbased_query_executer.go │ │ │ │ │ ├── lockbased_tx_simulator.go │ │ │ │ │ ├── lockbased_txmgr.go │ │ │ │ │ ├── pkg_test.go │ │ │ │ │ └── txmgr_test.go │ │ │ │ └── txmgr.go │ │ │ │ ├── validator │ │ │ │ ├── statebasedval │ │ │ │ │ ├── combined_iterator.go │ │ │ │ │ ├── combined_iterator_test.go │ │ │ │ │ ├── range_query_validator.go │ │ │ │ │ ├── range_query_validator_test.go │ │ │ │ │ ├── state_based_validator.go │ │ │ │ │ └── state_based_validator_test.go │ │ │ │ └── validator.go │ │ │ │ └── version │ │ │ │ ├── version.go │ │ │ │ └── version_test.go │ │ ├── ledger_interface.go │ │ ├── ledgerconfig │ │ │ ├── ledger_config.go │ │ │ └── ledger_config_test.go │ │ ├── ledgermgmt │ │ │ ├── ledger_mgmt.go │ │ │ ├── ledger_mgmt_test.go │ │ │ └── ledger_mgmt_test_exports.go │ │ ├── testutil │ │ │ ├── test_util.go │ │ │ └── test_util_test.go │ │ └── util │ │ │ ├── couchdb │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── couchdb.go │ │ │ ├── couchdb_test.go │ │ │ ├── couchdbutil.go │ │ │ └── couchdbutil_test.go │ │ │ ├── txvalidationflags.go │ │ │ ├── txvalidationflags_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── mocks │ │ ├── ccprovider │ │ │ └── ccprovider.go │ │ ├── txvalidator │ │ │ └── support.go │ │ └── validator │ │ │ └── validator.go │ ├── peer │ │ ├── config.go │ │ ├── config_test.go │ │ ├── peer.go │ │ ├── peer_test.go │ │ ├── pkg_test.go │ │ └── testdata │ │ │ ├── Org1-cert.pem │ │ │ ├── Org1-server1-cert.pem │ │ │ ├── Org1-server1-key.pem │ │ │ ├── Org2-cert.pem │ │ │ ├── Org2-child1-cert.pem │ │ │ ├── Org2-child1-key.pem │ │ │ ├── Org2-child1-server1-cert.pem │ │ │ ├── Org2-child1-server1-key.pem │ │ │ ├── Org2-server1-cert.pem │ │ │ ├── Org2-server1-key.pem │ │ │ ├── Org3-cert.pem │ │ │ ├── Org3-server1-cert.pem │ │ │ ├── Org3-server1-key.pem │ │ │ └── generate.go │ ├── policy │ │ ├── mocks │ │ │ └── mocks.go │ │ ├── policy.go │ │ └── policy_test.go │ ├── policyprovider │ │ ├── provider.go │ │ └── provider_test.go │ ├── scc │ │ ├── cscc │ │ │ ├── configure.go │ │ │ └── configure_test.go │ │ ├── escc │ │ │ ├── endorser_onevalidsignature.go │ │ │ └── endorser_onevalidsignature_test.go │ │ ├── importsysccs.go │ │ ├── lscc │ │ │ ├── lscc.go │ │ │ └── lscc_test.go │ │ ├── qscc │ │ │ ├── query.go │ │ │ └── query_test.go │ │ ├── samplesyscc │ │ │ ├── samplesyscc.go │ │ │ └── samplesyscc_test.go │ │ ├── scc_test.go │ │ ├── sccproviderimpl.go │ │ ├── sysccapi.go │ │ └── vscc │ │ │ ├── validator_onevalidsignature.go │ │ │ └── validator_onevalidsignature_test.go │ └── testutil │ │ └── config.go ├── devenv │ ├── README.md │ ├── Vagrantfile │ ├── failure-motd.in │ ├── golang_buildcmd.sh │ ├── golang_buildpkg.sh │ ├── images │ │ └── openchain-dev-env-deployment-diagram.png │ ├── limits.conf │ ├── setup.sh │ ├── setupRHELonZ.sh │ ├── setupUbuntuOnPPC64le.sh │ └── tools │ │ └── couchdb ├── docker-env.mk ├── docs │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── custom_theme │ │ └── searchbox.html │ ├── requirements.txt │ └── source │ │ ├── CONTRIBUTING.rst │ │ ├── DCO1.1.txt │ │ ├── Fabric-FAQ.rst │ │ ├── Gerrit │ │ ├── best-practices.rst │ │ ├── changes.rst │ │ ├── gerrit.rst │ │ ├── lf-account.rst │ │ └── reviewing.rst │ │ ├── MAINTAINERS.rst │ │ ├── Setup │ │ └── TLSSetup.rst │ │ ├── Style-guides │ │ └── go-style.rst │ │ ├── _static │ │ └── css │ │ │ └── custom.css │ │ ├── _templates │ │ ├── footer.html │ │ └── layout.html │ │ ├── arch-deep-dive.rst │ │ ├── architecture.rst │ │ ├── blockchain.rst │ │ ├── build_network.rst │ │ ├── capabilities.rst │ │ ├── chaincode.rst │ │ ├── chaincode4ade.rst │ │ ├── chaincode4noah.rst │ │ ├── channels.rst │ │ ├── conf.py │ │ ├── configtx.rst │ │ ├── configtxgen.rst │ │ ├── configtxlator.rst │ │ ├── dev-setup │ │ ├── build.rst │ │ ├── devenv.rst │ │ └── headers.txt │ │ ├── endorsement-policies.rst │ │ ├── error-handling.rst │ │ ├── fabric-sdks.rst │ │ ├── fabric_model.rst │ │ ├── getting_started.rst │ │ ├── glossary.rst │ │ ├── gossip.rst │ │ ├── images │ │ ├── AppConceptsOverview.png │ │ ├── Jira.png │ │ ├── Jira1.png │ │ ├── Jira2.png │ │ ├── Jira3.png │ │ ├── Jira4.png │ │ ├── QueryingtheLedger.png │ │ ├── RunningtheSample.png │ │ ├── Smart_Contract.png │ │ ├── UpdatingtheLedger.png │ │ ├── attributes_flow.png │ │ ├── basic_network.png │ │ ├── blocks-3.png │ │ ├── chaincode_swimlane.png │ │ ├── consensus.png │ │ ├── current_network.png │ │ ├── flow-4.png │ │ ├── future_net.png │ │ ├── standalone-app-developer.png │ │ ├── step0.png │ │ ├── step1.png │ │ ├── step2.png │ │ ├── step3.png │ │ ├── step4.png │ │ ├── step5.png │ │ ├── step6.png │ │ ├── what.png │ │ └── world_view.png │ │ ├── index.rst │ │ ├── install_instantiate.rst │ │ ├── jira_navigation.rst │ │ ├── kafka.rst │ │ ├── ledger.rst │ │ ├── logging-control.rst │ │ ├── mdtorst.sh │ │ ├── msp-identity-validity-rules.rst │ │ ├── msp.rst │ │ ├── peer-chaincode-devmode.rst │ │ ├── policies.rst │ │ ├── prereqs.rst │ │ ├── questions.rst │ │ ├── readwrite.rst │ │ ├── releases.rst │ │ ├── requirements.txt │ │ ├── samples.rst │ │ ├── security_model.rst │ │ ├── smartcontract.rst │ │ ├── status.rst │ │ ├── testing.rst │ │ ├── txflow.rst │ │ ├── understand_fabcar_network.rst │ │ ├── usecases.rst │ │ ├── videos.rst │ │ ├── whyfabric.rst │ │ └── write_first_app.rst ├── events │ ├── consumer │ │ ├── adapter.go │ │ ├── consumer.go │ │ └── consumer_test.go │ └── producer │ │ ├── eventhelper.go │ │ ├── events.go │ │ ├── events_test.go │ │ ├── handler.go │ │ ├── producer.go │ │ ├── producer_test.go │ │ └── register_internal_events.go ├── examples │ ├── ccchecker │ │ ├── ccchecker.go │ │ ├── ccchecker.json │ │ ├── chaincodes │ │ │ ├── chaincodes.go │ │ │ ├── newkeyperinvoke │ │ │ │ ├── newkeyperinvoke.go │ │ │ │ └── shadow │ │ │ │ │ └── newkeyperinvoke.go │ │ │ └── registershadow.go │ │ ├── init.go │ │ └── main.go │ ├── chaincode │ │ ├── chaintool │ │ │ └── example02 │ │ │ │ ├── chaincode.yaml │ │ │ │ └── src │ │ │ │ ├── chaincode │ │ │ │ └── chaincode_example02.go │ │ │ │ └── interfaces │ │ │ │ ├── appinit.cci │ │ │ │ └── org.hyperledger.chaincode.example02.cci │ │ ├── go │ │ │ ├── chaincode_example01 │ │ │ │ └── chaincode_example01.go │ │ │ ├── chaincode_example02 │ │ │ │ ├── chaincode_example02.go │ │ │ │ └── chaincode_example02_test.go │ │ │ ├── chaincode_example03 │ │ │ │ ├── chaincode_example03.go │ │ │ │ └── chaincode_example03_test.go │ │ │ ├── chaincode_example04 │ │ │ │ ├── chaincode_example04.go │ │ │ │ └── chaincode_example04_test.go │ │ │ ├── chaincode_example05 │ │ │ │ ├── chaincode_example05.go │ │ │ │ └── chaincode_example05_test.go │ │ │ ├── eventsender │ │ │ │ └── eventsender.go │ │ │ ├── invokereturnsvalue │ │ │ │ ├── invokereturnsvalue.go │ │ │ │ └── invokereturnsvalue_test.go │ │ │ ├── map │ │ │ │ └── map.go │ │ │ ├── marbles02 │ │ │ │ └── marbles_chaincode.go │ │ │ ├── passthru │ │ │ │ └── passthru.go │ │ │ ├── sleeper │ │ │ │ └── sleeper.go │ │ │ └── utxo │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── chaincode.go │ │ │ │ ├── consensus │ │ │ │ ├── consensus.go │ │ │ │ └── consensus_wrap.cxx │ │ │ │ ├── store.go │ │ │ │ └── util │ │ │ │ ├── First_500_transactions_base64_encoded_on_testnet3.txt │ │ │ │ ├── Hashes_for_first_500_transactions_on_testnet3.txt │ │ │ │ ├── dah.pb.go │ │ │ │ ├── dah.proto │ │ │ │ ├── store.go │ │ │ │ ├── util.go │ │ │ │ ├── utxo.go │ │ │ │ └── utxo_test.go │ │ └── java │ │ │ ├── .gitignore │ │ │ ├── Example │ │ │ ├── build.gradle │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── Example.java │ │ │ ├── LinkExample │ │ │ ├── build.gradle │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── LinkExample.java │ │ │ ├── MapExample │ │ │ ├── build.gradle │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── MapExample.java │ │ │ ├── RangeExample │ │ │ ├── build.gradle │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── RangeExample.java │ │ │ ├── SimpleSample │ │ │ ├── build.gradle │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── SimpleSample.java │ │ │ ├── chaincode_example02 │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── Example02.java │ │ │ ├── chaincode_example04 │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── Example04.java │ │ │ ├── chaincode_example05 │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── Example05.java │ │ │ ├── chaincode_example06 │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── Example06.java │ │ │ └── eventsender │ │ │ ├── build.gradle │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── example │ │ │ └── EventSender.java │ ├── cluster │ │ ├── Makefile │ │ ├── compose │ │ │ ├── docker-compose.yaml │ │ │ ├── peer-base │ │ │ │ └── peer-base.yaml │ │ │ └── report-env.sh │ │ ├── config │ │ │ ├── configtx.yaml │ │ │ ├── core.yaml │ │ │ ├── cryptogen.yaml │ │ │ ├── fabric-ca-server-config.yaml │ │ │ ├── fabric-tlsca-server-config.yaml │ │ │ └── orderer.yaml │ │ ├── configure.sh │ │ └── usage.txt │ ├── configtxupdate │ │ ├── README.md │ │ ├── bootstrap_batchsize │ │ │ └── script.sh │ │ ├── common_scripts │ │ │ └── common.sh │ │ ├── reconfig_batchsize │ │ │ └── script.sh │ │ └── reconfig_membership │ │ │ └── script.sh │ ├── e2e_cli │ │ ├── base │ │ │ ├── docker-compose-base.yaml │ │ │ └── peer-base.yaml │ │ ├── channel-artifacts │ │ │ └── .gitkeep │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ ├── docker-compose-cli.yaml │ │ ├── docker-compose-couch.yaml │ │ ├── docker-compose-e2e-template.yaml │ │ ├── docker-compose-e2e.yaml │ │ ├── download-dockerimages.sh │ │ ├── end-to-end.rst │ │ ├── examples │ │ │ └── chaincode │ │ │ │ └── go │ │ │ │ └── chaincode_example02 │ │ │ │ └── chaincode_example02.go │ │ ├── generateArtifacts.sh │ │ ├── network_setup.sh │ │ └── scripts │ │ │ └── script.sh │ └── events │ │ └── block-listener │ │ ├── README.md │ │ └── block-listener.go ├── gossip │ ├── api │ │ ├── api_test.go │ │ ├── channel.go │ │ └── crypto.go │ ├── comm │ │ ├── comm.go │ │ ├── comm_impl.go │ │ ├── comm_test.go │ │ ├── conn.go │ │ ├── crypto.go │ │ ├── crypto_test.go │ │ ├── demux.go │ │ ├── demux_test.go │ │ ├── mock │ │ │ ├── mock_comm.go │ │ │ └── mock_comm_test.go │ │ └── msg.go │ ├── common │ │ ├── common.go │ │ └── common_test.go │ ├── discovery │ │ ├── discovery.go │ │ ├── discovery_impl.go │ │ └── discovery_test.go │ ├── election │ │ ├── adapter.go │ │ ├── adapter_test.go │ │ ├── election.go │ │ └── election_test.go │ ├── filter │ │ ├── filter.go │ │ └── filter_test.go │ ├── gossip │ │ ├── algo │ │ │ ├── pull.go │ │ │ └── pull_test.go │ │ ├── anchor_test.go │ │ ├── batcher.go │ │ ├── batcher_test.go │ │ ├── certstore.go │ │ ├── certstore_test.go │ │ ├── channel │ │ │ ├── channel.go │ │ │ └── channel_test.go │ │ ├── chanstate.go │ │ ├── gossip.go │ │ ├── gossip_impl.go │ │ ├── gossip_test.go │ │ ├── msgstore │ │ │ ├── msgs.go │ │ │ └── msgs_test.go │ │ ├── orgs_test.go │ │ └── pull │ │ │ ├── pullstore.go │ │ │ └── pullstore_test.go │ ├── identity │ │ ├── identity.go │ │ └── identity_test.go │ ├── integration │ │ ├── integration.go │ │ └── integration_test.go │ ├── service │ │ ├── eventer.go │ │ ├── eventer_test.go │ │ ├── gossip_service.go │ │ ├── gossip_service_test.go │ │ ├── integration_test.go │ │ └── join_test.go │ ├── state │ │ ├── metastate.go │ │ ├── metastate_test.go │ │ ├── mocks │ │ │ ├── gossip.go │ │ │ └── gossip_test.go │ │ ├── payloads_buffer.go │ │ ├── payloads_buffer_test.go │ │ ├── state.go │ │ └── state_test.go │ └── util │ │ ├── logging.go │ │ ├── misc.go │ │ ├── misc_test.go │ │ ├── msgs.go │ │ ├── msgs_test.go │ │ ├── pubsub.go │ │ └── pubsub_test.go ├── gotools │ └── Makefile ├── images │ ├── buildenv │ │ └── Dockerfile.in │ ├── ccenv │ │ └── Dockerfile.in │ ├── couchdb │ │ ├── Dockerfile.in │ │ ├── docker-entrypoint.sh │ │ ├── local.ini │ │ └── vm.args │ ├── javaenv │ │ └── Dockerfile.in │ ├── kafka │ │ ├── Dockerfile.in │ │ ├── docker-entrypoint.sh │ │ └── kafka-run-class.sh │ ├── orderer │ │ └── Dockerfile.in │ ├── peer │ │ └── Dockerfile.in │ ├── testenv │ │ ├── Dockerfile.in │ │ └── install-softhsm2.sh │ ├── tools │ │ └── Dockerfile.in │ └── zookeeper │ │ ├── Dockerfile.in │ │ └── docker-entrypoint.sh ├── mkdocs.yml ├── msp │ ├── cert.go │ ├── cert_test.go │ ├── configbuilder.go │ ├── configbuilder_test.go │ ├── identities.go │ ├── mgmt │ │ ├── deserializer.go │ │ ├── deserializer_test.go │ │ ├── mgmt.go │ │ ├── mgmt_test.go │ │ ├── peermsp_test.go │ │ ├── principal.go │ │ ├── principal_test.go │ │ └── testtools │ │ │ ├── config.go │ │ │ └── config_test.go │ ├── msp.go │ ├── msp_test.go │ ├── mspimpl.go │ ├── mspmgrimpl.go │ ├── mspwithintermediatecas_test.go │ ├── ouconfig_test.go │ ├── revocation_test.go │ ├── testdata │ │ ├── badadmin │ │ │ ├── admincerts │ │ │ │ ├── cert-COP1.pem │ │ │ │ └── cert-COP2.pem │ │ │ ├── cacerts │ │ │ │ ├── cacert-COP.pem │ │ │ │ └── cacert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── key-COP1.pem │ │ │ └── signcerts │ │ │ │ └── cert-COP1.pem │ │ ├── badconfigou │ │ │ ├── admincerts │ │ │ │ └── admincert.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── peer.pem │ │ ├── badconfigoucert │ │ │ ├── admincerts │ │ │ │ └── admincert.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── peer.pem │ │ ├── external │ │ │ ├── admincerts │ │ │ │ └── admin.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── config.yaml │ │ │ ├── intermediatecerts │ │ │ │ └── intermediatecert.pem │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── cert.pem │ │ ├── intermediate │ │ │ ├── admincerts │ │ │ │ └── admin.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── intermediatecerts │ │ │ │ └── intermediatecert.pem │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── signcert.pem │ │ ├── intermediate2 │ │ │ ├── admincerts │ │ │ │ └── admin.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── intermediatecerts │ │ │ │ └── intermediatecert.pem │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ ├── signcerts │ │ │ │ └── signcert.pem │ │ │ └── users │ │ │ │ └── user2-cert.pem │ │ ├── revocation │ │ │ ├── admincerts │ │ │ │ └── admin.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── crls │ │ │ │ └── crl.pem │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── signcert.pem │ │ ├── revocation2 │ │ │ ├── admincerts │ │ │ │ └── admin.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── crls │ │ │ │ └── crl.pem │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── signcert.pem │ │ ├── revokedica │ │ │ ├── admincerts │ │ │ │ └── admin.pem │ │ │ ├── cacerts │ │ │ │ └── cacert.pem │ │ │ ├── crls │ │ │ │ └── crl.pem │ │ │ ├── intermediatecerts │ │ │ │ └── intermidiatecert.pem │ │ │ ├── keystore │ │ │ │ └── key.pem │ │ │ └── signcerts │ │ │ │ └── signcert.pem │ │ └── tls │ │ │ ├── admincerts │ │ │ └── admin.pem │ │ │ ├── cacerts │ │ │ └── cacert.pem │ │ │ ├── config.yaml │ │ │ ├── intermediatecerts │ │ │ └── intermediatecert.pem │ │ │ ├── keystore │ │ │ └── key.pem │ │ │ ├── signcerts │ │ │ └── cert.pem │ │ │ ├── tlscacerts │ │ │ └── cacert.pem │ │ │ └── tlsintermediatecerts │ │ │ └── intermediatecert.pem │ └── tls_test.go ├── orderer │ ├── README.md │ ├── common │ │ ├── blockcutter │ │ │ ├── blockcutter.go │ │ │ └── blockcutter_test.go │ │ ├── bootstrap │ │ │ ├── bootstrap.go │ │ │ └── file │ │ │ │ ├── bootstrap.go │ │ │ │ └── bootstrap_test.go │ │ ├── broadcast │ │ │ ├── broadcast.go │ │ │ └── broadcast_test.go │ │ ├── configtxfilter │ │ │ ├── filter.go │ │ │ └── filter_test.go │ │ ├── deliver │ │ │ ├── deliver.go │ │ │ └── deliver_test.go │ │ ├── filter │ │ │ ├── filter.go │ │ │ └── filter_test.go │ │ ├── sigfilter │ │ │ ├── sigfilter.go │ │ │ └── sigfilter_test.go │ │ └── sizefilter │ │ │ ├── sizefilter.go │ │ │ └── sizefilter_test.go │ ├── configupdate │ │ ├── configupdate.go │ │ └── configupdate_test.go │ ├── kafka │ │ ├── chain.go │ │ ├── chain_test.go │ │ ├── channel.go │ │ ├── channel_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── consenter.go │ │ ├── consenter_test.go │ │ ├── partitioner.go │ │ ├── partitioner_test.go │ │ ├── retry.go │ │ └── retry_test.go │ ├── ledger │ │ ├── blackbox_test.go │ │ ├── file │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── impl.go │ │ │ └── impl_test.go │ │ ├── file_test.go │ │ ├── json │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── impl.go │ │ │ └── impl_test.go │ │ ├── json_test.go │ │ ├── ledger.go │ │ ├── ram │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── impl.go │ │ │ └── impl_test.go │ │ ├── ram_test.go │ │ └── util.go │ ├── localconfig │ │ ├── config.go │ │ └── config_test.go │ ├── main.go │ ├── main_test.go │ ├── metadata │ │ ├── metadata.go │ │ └── metadata_test.go │ ├── mocks │ │ ├── blockcutter │ │ │ ├── blockcutter.go │ │ │ └── blockcutter_test.go │ │ ├── multichain │ │ │ ├── multichain.go │ │ │ └── multichain_test.go │ │ └── util │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── multichain │ │ ├── chainsupport.go │ │ ├── chainsupport_test.go │ │ ├── manager.go │ │ ├── manager_test.go │ │ ├── systemchain.go │ │ ├── systemchain_test.go │ │ └── util_test.go │ ├── sample_clients │ │ ├── broadcast_config │ │ │ ├── client.go │ │ │ └── newchain.go │ │ ├── broadcast_timestamp │ │ │ └── client.go │ │ ├── deliver_stdout │ │ │ └── client.go │ │ └── single_tx_client │ │ │ └── single_tx_client.go │ ├── server.go │ ├── server_test.go │ ├── solo │ │ ├── consensus.go │ │ └── consensus_test.go │ ├── util.go │ └── util_test.go ├── peer │ ├── chaincode │ │ ├── chaincode.go │ │ ├── common.go │ │ ├── common_test.go │ │ ├── install.go │ │ ├── install_test.go │ │ ├── instantiate.go │ │ ├── instantiate_test.go │ │ ├── invoke.go │ │ ├── invoke_test.go │ │ ├── package.go │ │ ├── package_test.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── signpackage.go │ │ ├── signpackage_test.go │ │ ├── upgrade.go │ │ └── upgrade_test.go │ ├── channel │ │ ├── channel.go │ │ ├── create.go │ │ ├── create_test.go │ │ ├── deliverclient.go │ │ ├── fetchconfig.go │ │ ├── fetchconfig_test.go │ │ ├── join.go │ │ ├── join_test.go │ │ ├── list.go │ │ ├── list_test.go │ │ ├── update.go │ │ └── update_test.go │ ├── clilogging │ │ ├── common.go │ │ ├── getlevel.go │ │ ├── logging.go │ │ ├── logging_test.go │ │ ├── revertlevels.go │ │ └── setlevel.go │ ├── common │ │ ├── common.go │ │ ├── common_test.go │ │ ├── mockclient.go │ │ └── ordererclient.go │ ├── gossip │ │ ├── mcs.go │ │ ├── mcs_test.go │ │ ├── mocks │ │ │ └── mocks.go │ │ ├── sa.go │ │ └── sa_test.go │ ├── main.go │ ├── node │ │ ├── node.go │ │ ├── start.go │ │ ├── start_test.go │ │ ├── status.go │ │ └── status_test.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── proposals │ └── r1 │ │ ├── Custom-Events-High-level-specification.md │ │ ├── Next-Consensus-Architecture-Proposal.md │ │ ├── Next-Ledger-Architecture-Proposal.md │ │ ├── Release-Process.md │ │ ├── System-Chaincode-Specification.md │ │ ├── blocks-2.png │ │ └── flow-2.png ├── protos │ ├── .protoroot │ ├── common │ │ ├── block.go │ │ ├── block_test.go │ │ ├── common.go │ │ ├── common.pb.go │ │ ├── common.proto │ │ ├── common_test.go │ │ ├── configtx.go │ │ ├── configtx.pb.go │ │ ├── configtx.proto │ │ ├── configtx_test.go │ │ ├── configuration.go │ │ ├── configuration.pb.go │ │ ├── configuration.proto │ │ ├── configuration_test.go │ │ ├── ledger.pb.go │ │ ├── ledger.proto │ │ ├── ledger_test.go │ │ ├── policies.go │ │ ├── policies.pb.go │ │ ├── policies.proto │ │ ├── policies_test.go │ │ ├── signed_data.go │ │ └── signed_data_test.go │ ├── gossip │ │ ├── extensions.go │ │ ├── extensions_test.go │ │ ├── message.pb.go │ │ ├── message.proto │ │ └── message_test.go │ ├── ledger │ │ ├── queryresult │ │ │ ├── kv_query_result.pb.go │ │ │ └── kv_query_result.proto │ │ └── rwset │ │ │ ├── kvrwset │ │ │ ├── helper.go │ │ │ ├── kv_rwset.pb.go │ │ │ └── kv_rwset.proto │ │ │ ├── rwset.pb.go │ │ │ └── rwset.proto │ ├── msp │ │ ├── identities.pb.go │ │ ├── identities.proto │ │ ├── msp_config.go │ │ ├── msp_config.pb.go │ │ ├── msp_config.proto │ │ ├── msp_principal.go │ │ ├── msp_principal.pb.go │ │ └── msp_principal.proto │ ├── orderer │ │ ├── ab.pb.go │ │ ├── ab.proto │ │ ├── configuration.go │ │ ├── configuration.pb.go │ │ ├── configuration.proto │ │ ├── kafka.pb.go │ │ └── kafka.proto │ ├── peer │ │ ├── admin.pb.go │ │ ├── admin.proto │ │ ├── chaincode.pb.go │ │ ├── chaincode.proto │ │ ├── chaincode_event.pb.go │ │ ├── chaincode_event.proto │ │ ├── chaincode_shim.pb.go │ │ ├── chaincode_shim.proto │ │ ├── chaincodeunmarshall.go │ │ ├── configuration.go │ │ ├── configuration.pb.go │ │ ├── configuration.proto │ │ ├── events.pb.go │ │ ├── events.proto │ │ ├── init.go │ │ ├── peer.pb.go │ │ ├── peer.proto │ │ ├── proposal.pb.go │ │ ├── proposal.proto │ │ ├── proposal_response.pb.go │ │ ├── proposal_response.proto │ │ ├── query.pb.go │ │ ├── query.proto │ │ ├── signed_cc_dep_spec.pb.go │ │ ├── signed_cc_dep_spec.proto │ │ ├── transaction.pb.go │ │ └── transaction.proto │ ├── testutils │ │ └── txtestutils.go │ └── utils │ │ ├── blockutils.go │ │ ├── blockutils_test.go │ │ ├── commonutils.go │ │ ├── commonutils_test.go │ │ ├── proputils.go │ │ ├── proputils_test.go │ │ ├── txutils.go │ │ └── txutils_test.go ├── release │ └── templates │ │ ├── get-byfn.in │ │ └── get-docker-images.in ├── release_notes │ ├── v1.0.0-beta.md │ ├── v1.0.0-rc1.txt │ ├── v1.0.0.txt │ ├── v1.0.1.txt │ ├── v1.0.2.txt │ ├── v1.0.3.txt │ ├── v1.0.5.txt │ └── v1.0.6.txt ├── sampleconfig │ ├── configtx.yaml │ ├── core.yaml │ ├── msp │ │ ├── admincerts │ │ │ └── admincert.pem │ │ ├── cacerts │ │ │ └── cacert.pem │ │ ├── config.yaml │ │ ├── keystore │ │ │ └── key.pem │ │ ├── signcerts │ │ │ └── peer.pem │ │ └── tlscacerts │ │ │ └── cert.pem │ └── orderer.yaml ├── scripts │ ├── bootstrap-1.0.0-alpha2.sh │ ├── bootstrap-1.0.0-beta.sh │ ├── bootstrap-1.0.0-rc1.sh │ ├── bootstrap-1.0.0.sh │ ├── bootstrap-1.0.1.sh │ ├── bootstrap-1.0.4.sh │ ├── bootstrap.sh │ ├── changelog.sh │ ├── check_license.sh │ ├── check_spelling.sh │ ├── compile_protos.sh │ ├── containerlogs.sh │ ├── foldercopy.sh │ ├── goListFiles.sh │ ├── golinter.sh │ ├── infiniteloop.sh │ └── install_behave.sh ├── settings.gradle ├── test │ ├── chaincodes │ │ ├── AuctionApp │ │ │ ├── art.go │ │ │ ├── image_proc_api.go │ │ │ └── table_api.go │ │ ├── AutoVendor │ │ │ ├── chaincode │ │ │ │ └── main.go │ │ │ ├── directdep │ │ │ │ └── core.go │ │ │ └── indirectdep │ │ │ │ └── core.go │ │ └── BadImport │ │ │ └── main.go │ ├── docker-compose.yml │ ├── envsetup │ │ ├── channel-artifacts │ │ │ └── .gitkeep │ │ ├── docker-compose.yaml │ │ └── generateCfgTrx.sh │ ├── feature │ │ ├── README.rst │ │ ├── bootstrap.feature │ │ ├── configs │ │ │ ├── configtx.yaml │ │ │ └── crypto.yaml │ │ ├── docker-compose │ │ │ ├── docker-compose-kafka.yml │ │ │ └── docker-compose-solo.yml │ │ ├── environment.py │ │ ├── orderer.feature │ │ ├── peer.feature │ │ └── steps │ │ │ ├── __init__.py │ │ │ ├── basic_impl.py │ │ │ ├── compose_util.py │ │ │ ├── config_util.py │ │ │ ├── endorser_impl.py │ │ │ ├── endorser_util.py │ │ │ ├── orderer_impl.py │ │ │ └── orderer_util.py │ ├── regression │ │ ├── daily │ │ │ ├── Example.py │ │ │ ├── README.md │ │ │ ├── README.rst.orig │ │ │ ├── SampleScriptFailTest.sh │ │ │ ├── SampleScriptPassTest.sh │ │ │ ├── TestPlaceholder.sh │ │ │ ├── chaincodeTests │ │ │ │ ├── README.rst │ │ │ │ ├── envsetup │ │ │ │ │ ├── channel-artifacts │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ ├── generateCfgTrx.sh │ │ │ │ │ ├── network_setup.sh │ │ │ │ │ └── testYourChaincode.py │ │ │ │ ├── fabricFeatureChaincodes │ │ │ │ │ ├── create_join_channel.sh │ │ │ │ │ ├── e2e_test_example02.sh │ │ │ │ │ └── go │ │ │ │ │ │ └── README.rst │ │ │ │ └── runChaincodes.sh │ │ │ ├── ledger_lte.py │ │ │ ├── runDailyTestSuite.sh │ │ │ ├── systest_pte.py │ │ │ └── testAuctionChaincode.py │ │ ├── release │ │ │ ├── README.md │ │ │ ├── byfn_release_tests.py │ │ │ ├── e2e_sdk_release_tests.py │ │ │ ├── make_targets_release_tests.py │ │ │ ├── runReleaseTestSuite.sh │ │ │ ├── run_byfn_cli_release_tests.sh │ │ │ ├── run_e2e_java_sdk.sh │ │ │ ├── run_e2e_node_sdk.sh │ │ │ ├── run_make_targets.sh │ │ │ └── run_node_sdk_byfn.sh │ │ └── weekly │ │ │ ├── README.md │ │ │ ├── runGroup1.sh │ │ │ ├── runGroup2.sh │ │ │ ├── runGroup3.sh │ │ │ ├── runGroup4.sh │ │ │ ├── systest_pte.py │ │ │ └── testAuctionChaincode.py │ └── tools │ │ ├── AuctionApp │ │ └── api_driver.sh │ │ ├── LTE │ │ ├── README.md │ │ ├── chainmgmt │ │ │ ├── block_gen.go │ │ │ ├── chains.go │ │ │ ├── conf.go │ │ │ ├── testenv.go │ │ │ └── tx_envelope_gen.go │ │ ├── common │ │ │ └── util.go │ │ ├── experiments │ │ │ ├── conf.go │ │ │ ├── init_test.go │ │ │ ├── insert_txs_test.go │ │ │ ├── readwrite_txs_test.go │ │ │ └── util.go │ │ └── scripts │ │ │ ├── benchmarks.sh │ │ │ ├── common.sh │ │ │ ├── parameters_daily_CI.sh │ │ │ └── runbenchmarks.sh │ │ ├── OTE │ │ └── README.rst │ │ └── PTE │ │ ├── README.md │ │ ├── SCFiles │ │ ├── config-chan1-TLS.json │ │ ├── config-chan1.json │ │ ├── config-chan2-TLS.json │ │ └── config-chan2.json │ │ ├── chaincode_sample.go │ │ ├── pte-execRequest.js │ │ ├── pte-main.js │ │ ├── pte-util.js │ │ ├── pte_driver.sh │ │ └── userInputs │ │ ├── runCases-burst-i.txt │ │ ├── runCases-burst-q.txt │ │ ├── runCases-chan-create.txt │ │ ├── runCases-chan-install.txt │ │ ├── runCases-chan-instantiate.txt │ │ ├── runCases-chan-join.txt │ │ ├── runCases-complex-i.txt │ │ ├── runCases-concurrency-i.txt │ │ ├── runCases-constant-i.txt │ │ ├── runCases-constant-q.txt │ │ ├── runCases-latency-i.txt │ │ ├── runCases-latency-q.txt │ │ ├── runCases-longrun-i.txt │ │ ├── runCases.txt │ │ ├── samplecc-chan1-burst-i.json │ │ ├── samplecc-chan1-burst-q.json │ │ ├── samplecc-chan1-complex-i.json │ │ ├── samplecc-chan1-concurrency-i.json │ │ ├── samplecc-chan1-constant-i-TLS.json │ │ ├── samplecc-chan1-constant-i.json │ │ ├── samplecc-chan1-constant-q.json │ │ ├── samplecc-chan1-create-TLS.json │ │ ├── samplecc-chan1-create.json │ │ ├── samplecc-chan1-install1-TLS.json │ │ ├── samplecc-chan1-install1.json │ │ ├── samplecc-chan1-install2-TLS.json │ │ ├── samplecc-chan1-install2.json │ │ ├── samplecc-chan1-instantiate-TLS.json │ │ ├── samplecc-chan1-instantiate.json │ │ ├── samplecc-chan1-join1-TLS.json │ │ ├── samplecc-chan1-join1.json │ │ ├── samplecc-chan1-join2-TLS.json │ │ ├── samplecc-chan1-join2.json │ │ ├── samplecc-chan1-latency-i.json │ │ ├── samplecc-chan1-latency-q.json │ │ ├── samplecc-chan1-longrun-i-TLS.json │ │ ├── samplecc-chan1-longrun-i.json │ │ ├── samplecc-chan2-burst-i.json │ │ ├── samplecc-chan2-burst-q.json │ │ ├── samplecc-chan2-complex-i.json │ │ ├── samplecc-chan2-concurrency-i.json │ │ ├── samplecc-chan2-constant-i-TLS.json │ │ ├── samplecc-chan2-constant-i.json │ │ ├── samplecc-chan2-constant-q.json │ │ ├── samplecc-chan2-create-TLS.json │ │ ├── samplecc-chan2-create.json │ │ ├── samplecc-chan2-install1-TLS.json │ │ ├── samplecc-chan2-install1.json │ │ ├── samplecc-chan2-install2-TLS.json │ │ ├── samplecc-chan2-install2.json │ │ ├── samplecc-chan2-instantiate-TLS.json │ │ ├── samplecc-chan2-instantiate.json │ │ ├── samplecc-chan2-join1-TLS.json │ │ ├── samplecc-chan2-join1.json │ │ ├── samplecc-chan2-join2-TLS.json │ │ ├── samplecc-chan2-join2.json │ │ ├── samplecc-chan2-latency-i.json │ │ ├── samplecc-chan2-latency-q.json │ │ ├── samplecc-chan2-longrun-i-TLS.json │ │ └── samplecc-chan2-longrun-i.json ├── tox.ini ├── unit-test │ ├── docker-compose.yml │ └── run.sh └── vendor │ ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── DATA-DOG │ │ └── godog │ │ │ ├── cmd │ │ │ └── godog │ │ │ │ ├── ansicolor.go │ │ │ │ ├── ansicolor_ansi.go │ │ │ │ ├── ansicolor_windows.go │ │ │ │ ├── main.go │ │ │ │ └── no_color.go │ │ │ └── gherkin │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ast.go │ │ │ ├── astbuilder.go │ │ │ ├── dialect.go │ │ │ ├── dialects_builtin.go │ │ │ ├── gherkin.go │ │ │ ├── matcher.go │ │ │ └── parser.go │ ├── Knetic │ │ └── govaluate │ │ │ ├── CONTRIBUTORS │ │ │ ├── EvaluableExpression.go │ │ │ ├── EvaluableExpression_sql.go │ │ │ ├── ExpressionToken.go │ │ │ ├── LICENSE │ │ │ ├── MANUAL.md │ │ │ ├── OperatorSymbol.go │ │ │ ├── README.md │ │ │ ├── TokenKind.go │ │ │ ├── evaluationStage.go │ │ │ ├── expressionFunctions.go │ │ │ ├── expressionOutputStream.go │ │ │ ├── lexerState.go │ │ │ ├── lexerStream.go │ │ │ ├── parameters.go │ │ │ ├── parsing.go │ │ │ ├── sanitizedParameters.go │ │ │ ├── stagePlanner.go │ │ │ ├── test.sh │ │ │ └── tokenStream.go │ ├── Shopify │ │ └── sarama │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── api_versions_request.go │ │ │ ├── api_versions_response.go │ │ │ ├── async_producer.go │ │ │ ├── broker.go │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── consumer.go │ │ │ ├── consumer_group_members.go │ │ │ ├── consumer_metadata_request.go │ │ │ ├── consumer_metadata_response.go │ │ │ ├── crc32_field.go │ │ │ ├── describe_groups_request.go │ │ │ ├── describe_groups_response.go │ │ │ ├── dev.yml │ │ │ ├── encoder_decoder.go │ │ │ ├── errors.go │ │ │ ├── examples │ │ │ ├── README.md │ │ │ └── http_server │ │ │ │ ├── README.md │ │ │ │ └── http_server.go │ │ │ ├── fetch_request.go │ │ │ ├── fetch_response.go │ │ │ ├── heartbeat_request.go │ │ │ ├── heartbeat_response.go │ │ │ ├── join_group_request.go │ │ │ ├── join_group_response.go │ │ │ ├── leave_group_request.go │ │ │ ├── leave_group_response.go │ │ │ ├── length_field.go │ │ │ ├── list_groups_request.go │ │ │ ├── list_groups_response.go │ │ │ ├── message.go │ │ │ ├── message_set.go │ │ │ ├── metadata_request.go │ │ │ ├── metadata_response.go │ │ │ ├── metrics.go │ │ │ ├── mockbroker.go │ │ │ ├── mockresponses.go │ │ │ ├── mocks │ │ │ ├── README.md │ │ │ ├── async_producer.go │ │ │ ├── consumer.go │ │ │ ├── mocks.go │ │ │ └── sync_producer.go │ │ │ ├── offset_commit_request.go │ │ │ ├── offset_commit_response.go │ │ │ ├── offset_fetch_request.go │ │ │ ├── offset_fetch_response.go │ │ │ ├── offset_manager.go │ │ │ ├── offset_request.go │ │ │ ├── offset_response.go │ │ │ ├── packet_decoder.go │ │ │ ├── packet_encoder.go │ │ │ ├── partitioner.go │ │ │ ├── prep_encoder.go │ │ │ ├── produce_request.go │ │ │ ├── produce_response.go │ │ │ ├── produce_set.go │ │ │ ├── real_decoder.go │ │ │ ├── real_encoder.go │ │ │ ├── request.go │ │ │ ├── response_header.go │ │ │ ├── sarama.go │ │ │ ├── sasl_handshake_request.go │ │ │ ├── sasl_handshake_response.go │ │ │ ├── sync_group_request.go │ │ │ ├── sync_group_response.go │ │ │ ├── sync_producer.go │ │ │ ├── tools │ │ │ ├── README.md │ │ │ ├── kafka-console-consumer │ │ │ │ ├── README.md │ │ │ │ └── kafka-console-consumer.go │ │ │ ├── kafka-console-partitionconsumer │ │ │ │ ├── README.md │ │ │ │ └── kafka-console-partitionconsumer.go │ │ │ └── kafka-console-producer │ │ │ │ ├── README.md │ │ │ │ └── kafka-console-producer.go │ │ │ ├── utils.go │ │ │ └── vagrant │ │ │ ├── boot_cluster.sh │ │ │ ├── create_topics.sh │ │ │ ├── install_cluster.sh │ │ │ ├── kafka.conf │ │ │ ├── provision.sh │ │ │ ├── run_toxiproxy.sh │ │ │ ├── server.properties │ │ │ ├── setup_services.sh │ │ │ ├── toxiproxy.conf │ │ │ ├── zookeeper.conf │ │ │ └── zookeeper.properties │ ├── Sirupsen │ │ └── logrus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_appengine.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── alecthomas │ │ ├── template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exec.go │ │ │ ├── funcs.go │ │ │ ├── helper.go │ │ │ ├── parse │ │ │ │ ├── lex.go │ │ │ │ ├── node.go │ │ │ │ └── parse.go │ │ │ └── template.go │ │ └── units │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── bytes.go │ │ │ ├── doc.go │ │ │ ├── si.go │ │ │ └── util.go │ ├── cpuguy83 │ │ └── go-md2man │ │ │ └── md2man │ │ │ ├── md2man.go │ │ │ └── roff.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── docker │ │ ├── docker │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── opts │ │ │ │ ├── hosts.go │ │ │ │ ├── hosts_unix.go │ │ │ │ ├── hosts_windows.go │ │ │ │ ├── ip.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_unix.go │ │ │ │ └── opts_windows.go │ │ │ ├── pkg │ │ │ │ ├── README.md │ │ │ │ ├── aaparser │ │ │ │ │ ├── aaparser.go │ │ │ │ │ └── aaparser_test.go │ │ │ │ ├── archive │ │ │ │ │ ├── README.md │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── archive_linux.go │ │ │ │ │ ├── archive_other.go │ │ │ │ │ ├── archive_test.go │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ ├── archive_unix_test.go │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ ├── archive_windows_test.go │ │ │ │ │ ├── changes.go │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ ├── changes_other.go │ │ │ │ │ ├── changes_posix_test.go │ │ │ │ │ ├── changes_test.go │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ ├── copy_unix_test.go │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_test.go │ │ │ │ │ ├── example_changes.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── broken.tar │ │ │ │ │ ├── time_linux.go │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ ├── utils_test.go │ │ │ │ │ ├── whiteouts.go │ │ │ │ │ ├── wrap.go │ │ │ │ │ └── wrap_test.go │ │ │ │ ├── authorization │ │ │ │ │ ├── api.go │ │ │ │ │ ├── authz.go │ │ │ │ │ ├── authz_unix_test.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── response.go │ │ │ │ ├── broadcaster │ │ │ │ │ ├── unbuffered.go │ │ │ │ │ └── unbuffered_test.go │ │ │ │ ├── chrootarchive │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── archive_test.go │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ ├── chroot_linux.go │ │ │ │ │ ├── chroot_unix.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_unix.go │ │ │ │ │ ├── diff_windows.go │ │ │ │ │ ├── init_unix.go │ │ │ │ │ └── init_windows.go │ │ │ │ ├── devicemapper │ │ │ │ │ ├── devmapper.go │ │ │ │ │ ├── devmapper_log.go │ │ │ │ │ ├── devmapper_wrapper.go │ │ │ │ │ ├── devmapper_wrapper_deferred_remove.go │ │ │ │ │ ├── devmapper_wrapper_no_deferred_remove.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ └── log.go │ │ │ │ ├── directory │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── directory_test.go │ │ │ │ │ ├── directory_unix.go │ │ │ │ │ └── directory_windows.go │ │ │ │ ├── discovery │ │ │ │ │ ├── README.md │ │ │ │ │ ├── backends.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── discovery_test.go │ │ │ │ │ ├── entry.go │ │ │ │ │ ├── file │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ └── file_test.go │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── generator_test.go │ │ │ │ │ ├── kv │ │ │ │ │ │ ├── kv.go │ │ │ │ │ │ └── kv_test.go │ │ │ │ │ ├── memory │ │ │ │ │ │ ├── memory.go │ │ │ │ │ │ └── memory_test.go │ │ │ │ │ └── nodes │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ └── nodes_test.go │ │ │ │ ├── filenotify │ │ │ │ │ ├── filenotify.go │ │ │ │ │ ├── fsnotify.go │ │ │ │ │ ├── poller.go │ │ │ │ │ └── poller_test.go │ │ │ │ ├── fileutils │ │ │ │ │ ├── fileutils.go │ │ │ │ │ ├── fileutils_darwin.go │ │ │ │ │ ├── fileutils_solaris.go │ │ │ │ │ ├── fileutils_test.go │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ └── fileutils_windows.go │ │ │ │ ├── gitutils │ │ │ │ │ ├── gitutils.go │ │ │ │ │ └── gitutils_test.go │ │ │ │ ├── graphdb │ │ │ │ │ ├── conn_sqlite3.go │ │ │ │ │ ├── conn_sqlite3_unix.go │ │ │ │ │ ├── conn_sqlite3_windows.go │ │ │ │ │ ├── conn_unsupported.go │ │ │ │ │ ├── graphdb.go │ │ │ │ │ ├── graphdb_test.go │ │ │ │ │ ├── sort.go │ │ │ │ │ ├── sort_test.go │ │ │ │ │ └── utils.go │ │ │ │ ├── homedir │ │ │ │ │ ├── homedir.go │ │ │ │ │ └── homedir_test.go │ │ │ │ ├── httputils │ │ │ │ │ ├── httputils.go │ │ │ │ │ ├── httputils_test.go │ │ │ │ │ ├── mimetype.go │ │ │ │ │ ├── mimetype_test.go │ │ │ │ │ ├── resumablerequestreader.go │ │ │ │ │ └── resumablerequestreader_test.go │ │ │ │ ├── idtools │ │ │ │ │ ├── idtools.go │ │ │ │ │ ├── idtools_unix.go │ │ │ │ │ ├── idtools_unix_test.go │ │ │ │ │ ├── idtools_windows.go │ │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ │ └── usergroupadd_unsupported.go │ │ │ │ ├── integration │ │ │ │ │ ├── checker │ │ │ │ │ │ └── checker.go │ │ │ │ │ ├── dockerCmd_utils.go │ │ │ │ │ ├── dockerCmd_utils_test.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_test.go │ │ │ │ ├── ioutils │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── buffer_test.go │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ ├── bytespipe_test.go │ │ │ │ │ ├── fmt.go │ │ │ │ │ ├── fmt_test.go │ │ │ │ │ ├── fswriters.go │ │ │ │ │ ├── fswriters_test.go │ │ │ │ │ ├── multireader.go │ │ │ │ │ ├── multireader_test.go │ │ │ │ │ ├── readers.go │ │ │ │ │ ├── readers_test.go │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ ├── writers.go │ │ │ │ │ └── writers_test.go │ │ │ │ ├── jsonlog │ │ │ │ │ ├── jsonlog.go │ │ │ │ │ ├── jsonlog_marshalling.go │ │ │ │ │ ├── jsonlog_marshalling_test.go │ │ │ │ │ ├── jsonlogbytes.go │ │ │ │ │ ├── jsonlogbytes_test.go │ │ │ │ │ ├── time_marshalling.go │ │ │ │ │ └── time_marshalling_test.go │ │ │ │ ├── jsonmessage │ │ │ │ │ ├── jsonmessage.go │ │ │ │ │ └── jsonmessage_test.go │ │ │ │ ├── listeners │ │ │ │ │ ├── listeners_solaris.go │ │ │ │ │ ├── listeners_unix.go │ │ │ │ │ └── listeners_windows.go │ │ │ │ ├── locker │ │ │ │ │ ├── README.md │ │ │ │ │ ├── locker.go │ │ │ │ │ └── locker_test.go │ │ │ │ ├── longpath │ │ │ │ │ ├── longpath.go │ │ │ │ │ └── longpath_test.go │ │ │ │ ├── loopback │ │ │ │ │ ├── attach_loopback.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ ├── loop_wrapper.go │ │ │ │ │ └── loopback.go │ │ │ │ ├── mflag │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── example │ │ │ │ │ │ └── example.go │ │ │ │ │ ├── flag.go │ │ │ │ │ └── flag_test.go │ │ │ │ ├── mount │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mount_unix_test.go │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ ├── mounter_solaris.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_linux_test.go │ │ │ │ │ ├── mountinfo_solaris.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ ├── mountinfo_windows.go │ │ │ │ │ ├── sharedsubtree_linux.go │ │ │ │ │ └── sharedsubtree_linux_test.go │ │ │ │ ├── namesgenerator │ │ │ │ │ ├── cmd │ │ │ │ │ │ └── names-generator │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── names-generator.go │ │ │ │ │ └── names-generator_test.go │ │ │ │ ├── parsers │ │ │ │ │ ├── kernel │ │ │ │ │ │ ├── kernel.go │ │ │ │ │ │ ├── kernel_darwin.go │ │ │ │ │ │ ├── kernel_unix.go │ │ │ │ │ │ ├── kernel_unix_test.go │ │ │ │ │ │ ├── kernel_windows.go │ │ │ │ │ │ ├── uname_linux.go │ │ │ │ │ │ ├── uname_solaris.go │ │ │ │ │ │ └── uname_unsupported.go │ │ │ │ │ ├── operatingsystem │ │ │ │ │ │ ├── operatingsystem_linux.go │ │ │ │ │ │ ├── operatingsystem_solaris.go │ │ │ │ │ │ ├── operatingsystem_unix.go │ │ │ │ │ │ ├── operatingsystem_unix_test.go │ │ │ │ │ │ └── operatingsystem_windows.go │ │ │ │ │ ├── parsers.go │ │ │ │ │ └── parsers_test.go │ │ │ │ ├── pidfile │ │ │ │ │ ├── pidfile.go │ │ │ │ │ ├── pidfile_test.go │ │ │ │ │ ├── pidfile_unix.go │ │ │ │ │ └── pidfile_windows.go │ │ │ │ ├── platform │ │ │ │ │ ├── architecture_linux.go │ │ │ │ │ ├── architecture_unix.go │ │ │ │ │ ├── architecture_windows.go │ │ │ │ │ ├── platform.go │ │ │ │ │ ├── utsname_int8.go │ │ │ │ │ └── utsname_uint8.go │ │ │ │ ├── plugins │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── discovery_test.go │ │ │ │ │ ├── discovery_unix_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── pluginrpc-gen │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ ├── foo.go │ │ │ │ │ │ │ └── otherfixture │ │ │ │ │ │ │ │ └── spaceship.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.go │ │ │ │ │ │ └── template.go │ │ │ │ │ ├── plugins.go │ │ │ │ │ └── transport │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ └── transport.go │ │ │ │ ├── pools │ │ │ │ │ ├── pools.go │ │ │ │ │ └── pools_test.go │ │ │ │ ├── progress │ │ │ │ │ ├── progress.go │ │ │ │ │ ├── progressreader.go │ │ │ │ │ └── progressreader_test.go │ │ │ │ ├── promise │ │ │ │ │ └── promise.go │ │ │ │ ├── pubsub │ │ │ │ │ ├── publisher.go │ │ │ │ │ └── publisher_test.go │ │ │ │ ├── random │ │ │ │ │ ├── random.go │ │ │ │ │ └── random_test.go │ │ │ │ ├── reexec │ │ │ │ │ ├── README.md │ │ │ │ │ ├── command_linux.go │ │ │ │ │ ├── command_unix.go │ │ │ │ │ ├── command_unsupported.go │ │ │ │ │ ├── command_windows.go │ │ │ │ │ └── reexec.go │ │ │ │ ├── registrar │ │ │ │ │ ├── registrar.go │ │ │ │ │ └── registrar_test.go │ │ │ │ ├── signal │ │ │ │ │ ├── README.md │ │ │ │ │ ├── signal.go │ │ │ │ │ ├── signal_darwin.go │ │ │ │ │ ├── signal_freebsd.go │ │ │ │ │ ├── signal_linux.go │ │ │ │ │ ├── signal_solaris.go │ │ │ │ │ ├── signal_unix.go │ │ │ │ │ ├── signal_unsupported.go │ │ │ │ │ ├── signal_windows.go │ │ │ │ │ └── trap.go │ │ │ │ ├── stdcopy │ │ │ │ │ ├── stdcopy.go │ │ │ │ │ └── stdcopy_test.go │ │ │ │ ├── streamformatter │ │ │ │ │ ├── streamformatter.go │ │ │ │ │ └── streamformatter_test.go │ │ │ │ ├── stringid │ │ │ │ │ ├── README.md │ │ │ │ │ ├── stringid.go │ │ │ │ │ └── stringid_test.go │ │ │ │ ├── stringutils │ │ │ │ │ ├── README.md │ │ │ │ │ ├── stringutils.go │ │ │ │ │ └── stringutils_test.go │ │ │ │ ├── symlink │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fs.go │ │ │ │ │ ├── fs_unix.go │ │ │ │ │ ├── fs_unix_test.go │ │ │ │ │ └── fs_windows.go │ │ │ │ ├── sysinfo │ │ │ │ │ ├── README.md │ │ │ │ │ ├── numcpu.go │ │ │ │ │ ├── numcpu_linux.go │ │ │ │ │ ├── numcpu_windows.go │ │ │ │ │ ├── sysinfo.go │ │ │ │ │ ├── sysinfo_freebsd.go │ │ │ │ │ ├── sysinfo_linux.go │ │ │ │ │ ├── sysinfo_linux_test.go │ │ │ │ │ ├── sysinfo_solaris.go │ │ │ │ │ ├── sysinfo_test.go │ │ │ │ │ └── sysinfo_windows.go │ │ │ │ ├── system │ │ │ │ │ ├── chtimes.go │ │ │ │ │ ├── chtimes_test.go │ │ │ │ │ ├── chtimes_unix.go │ │ │ │ │ ├── chtimes_unix_test.go │ │ │ │ │ ├── chtimes_windows.go │ │ │ │ │ ├── chtimes_windows_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── events_windows.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── lstat.go │ │ │ │ │ ├── lstat_unix_test.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_solaris.go │ │ │ │ │ ├── meminfo_unix_test.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── path_unix.go │ │ │ │ │ ├── path_windows.go │ │ │ │ │ ├── path_windows_test.go │ │ │ │ │ ├── stat.go │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ ├── stat_unix_test.go │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── syscall_windows_test.go │ │ │ │ │ ├── umask.go │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ ├── utimes_unix_test.go │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ ├── tailfile │ │ │ │ │ ├── tailfile.go │ │ │ │ │ └── tailfile_test.go │ │ │ │ ├── tarsum │ │ │ │ │ ├── builder_context.go │ │ │ │ │ ├── builder_context_test.go │ │ │ │ │ ├── fileinfosums.go │ │ │ │ │ ├── fileinfosums_test.go │ │ │ │ │ ├── tarsum.go │ │ │ │ │ ├── tarsum_spec.md │ │ │ │ │ ├── tarsum_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── 46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457 │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ │ ├── 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ │ ├── collision │ │ │ │ │ │ │ ├── collision-0.tar │ │ │ │ │ │ │ ├── collision-1.tar │ │ │ │ │ │ │ ├── collision-2.tar │ │ │ │ │ │ │ └── collision-3.tar │ │ │ │ │ │ └── xattr │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ ├── versioning.go │ │ │ │ │ ├── versioning_test.go │ │ │ │ │ └── writercloser.go │ │ │ │ ├── term │ │ │ │ │ ├── ascii.go │ │ │ │ │ ├── ascii_test.go │ │ │ │ │ ├── tc_linux_cgo.go │ │ │ │ │ ├── tc_other.go │ │ │ │ │ ├── tc_solaris_cgo.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_solaris.go │ │ │ │ │ ├── term_unix.go │ │ │ │ │ ├── term_windows.go │ │ │ │ │ ├── termios_darwin.go │ │ │ │ │ ├── termios_freebsd.go │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ ├── termios_openbsd.go │ │ │ │ │ └── windows │ │ │ │ │ │ ├── ansi_reader.go │ │ │ │ │ │ ├── ansi_writer.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── windows.go │ │ │ │ │ │ └── windows_test.go │ │ │ │ ├── testutil │ │ │ │ │ ├── assert │ │ │ │ │ │ └── assert.go │ │ │ │ │ └── pkg.go │ │ │ │ ├── tlsconfig │ │ │ │ │ └── config.go │ │ │ │ ├── truncindex │ │ │ │ │ ├── truncindex.go │ │ │ │ │ └── truncindex_test.go │ │ │ │ ├── urlutil │ │ │ │ │ ├── urlutil.go │ │ │ │ │ └── urlutil_test.go │ │ │ │ └── useragent │ │ │ │ │ ├── README.md │ │ │ │ │ ├── useragent.go │ │ │ │ │ └── useragent_test.go │ │ │ └── volume │ │ │ │ ├── volume.go │ │ │ │ ├── volume_copy.go │ │ │ │ ├── volume_propagation_linux.go │ │ │ │ ├── volume_propagation_unsupported.go │ │ │ │ ├── volume_unix.go │ │ │ │ └── volume_windows.go │ │ ├── engine-api │ │ │ ├── LICENSE │ │ │ └── types │ │ │ │ ├── filters │ │ │ │ └── parse.go │ │ │ │ └── versions │ │ │ │ ├── README.md │ │ │ │ └── compare.go │ │ └── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── size.go │ │ │ └── ulimit.go │ ├── eapache │ │ ├── go-resiliency │ │ │ ├── LICENSE │ │ │ └── breaker │ │ │ │ ├── README.md │ │ │ │ └── breaker.go │ │ ├── go-xerial-snappy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── snappy.go │ │ └── queue │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── queue.go │ ├── fsouza │ │ └── go-dockerclient │ │ │ ├── AUTHORS │ │ │ ├── DOCKER-LICENSE │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.markdown │ │ │ ├── auth.go │ │ │ ├── cancelable.go │ │ │ ├── cancelable_go14.go │ │ │ ├── change.go │ │ │ ├── client.go │ │ │ ├── container.go │ │ │ ├── env.go │ │ │ ├── event.go │ │ │ ├── exec.go │ │ │ ├── image.go │ │ │ ├── misc.go │ │ │ ├── network.go │ │ │ ├── signal.go │ │ │ ├── tar.go │ │ │ ├── tls.go │ │ │ └── volume.go │ ├── gocraft │ │ └── web │ │ │ ├── BENCHMARK_RESULTS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cover.sh │ │ │ ├── logger_middleware.go │ │ │ ├── options_handler.go │ │ │ ├── panic_handler.go │ │ │ ├── request.go │ │ │ ├── response_writer.go │ │ │ ├── router_serve.go │ │ │ ├── router_setup.go │ │ │ ├── show_errors_middleware.go │ │ │ ├── static_middleware.go │ │ │ └── tree.go │ ├── golang │ │ ├── protobuf │ │ │ ├── LICENSE │ │ │ ├── jsonpb │ │ │ │ └── jsonpb.go │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── lib.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── text.go │ │ │ │ └── text_parser.go │ │ │ ├── protoc-gen-go │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor │ │ │ │ │ ├── Makefile │ │ │ │ │ └── descriptor.pb.go │ │ │ │ ├── doc.go │ │ │ │ ├── generator │ │ │ │ │ ├── Makefile │ │ │ │ │ └── generator.go │ │ │ │ ├── grpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── link_grpc.go │ │ │ │ ├── main.go │ │ │ │ └── plugin │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ └── plugin.pb.golden │ │ │ └── ptypes │ │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ │ ├── empty │ │ │ │ ├── empty.pb.go │ │ │ │ └── empty.proto │ │ │ │ ├── struct │ │ │ │ ├── struct.pb.go │ │ │ │ └── struct.proto │ │ │ │ └── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ └── snappy │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ ├── google │ │ └── gofuzz │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ └── fuzz.go │ ├── gorilla │ │ ├── context │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ └── doc.go │ │ └── mux │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context_gorilla.go │ │ │ ├── context_native.go │ │ │ ├── doc.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ └── route.go │ ├── hashicorp │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ └── doc.go │ │ └── go-version │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── constraint.go │ │ │ ├── version.go │ │ │ └── version_collection.go │ ├── howeyc │ │ └── gopass │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── pass.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── klauspost │ │ └── crc32 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── crc32.go │ │ │ ├── crc32_amd64.go │ │ │ ├── crc32_amd64.s │ │ │ ├── crc32_amd64p32.go │ │ │ ├── crc32_amd64p32.s │ │ │ ├── crc32_generic.go │ │ │ ├── crc32_otherarch.go │ │ │ ├── crc32_s390x.go │ │ │ └── crc32_s390x.s │ ├── kr │ │ ├── pretty │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── diff.go │ │ │ ├── formatter.go │ │ │ ├── pretty.go │ │ │ └── zero.go │ │ └── text │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── doc.go │ │ │ ├── indent.go │ │ │ └── wrap.go │ ├── looplab │ │ └── fsm │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── event.go │ │ │ ├── fsm.go │ │ │ └── wercker.yml │ ├── magiconair │ │ └── properties │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── lex.go │ │ │ ├── load.go │ │ │ ├── parser.go │ │ │ ├── properties.go │ │ │ └── rangecheck.go │ ├── manudrijvers │ │ └── amcl │ │ │ ├── LICENSE-2.0.TXT │ │ │ ├── NOTICE.txt │ │ │ └── go │ │ │ ├── AES.go │ │ │ ├── BIG-additions.go │ │ │ ├── BIG.go │ │ │ ├── DBIG.go │ │ │ ├── ECDH.go │ │ │ ├── ECP-additions.go │ │ │ ├── ECP.go │ │ │ ├── ECP2-additions.go │ │ │ ├── ECP2.go │ │ │ ├── FF.go │ │ │ ├── FP-additions.go │ │ │ ├── FP.go │ │ │ ├── FP12-additions.go │ │ │ ├── FP12.go │ │ │ ├── FP2-additions.go │ │ │ ├── FP2.go │ │ │ ├── FP4.go │ │ │ ├── GCM.go │ │ │ ├── HASH256.go │ │ │ ├── HASH384.go │ │ │ ├── HASH512.go │ │ │ ├── MPIN.go │ │ │ ├── PAIR-additions.go │ │ │ ├── PAIR.go │ │ │ ├── RAND.go │ │ │ ├── ROM32.txt │ │ │ ├── ROM64.go │ │ │ ├── RSA.go │ │ │ └── readme.txt │ ├── mattn │ │ └── go-sqlite3 │ │ │ └── code │ │ │ ├── sqlite3-binding.c │ │ │ ├── sqlite3-binding.h │ │ │ └── sqlite3ext.h │ ├── miekg │ │ └── pkcs11 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const.go │ │ │ ├── error.go │ │ │ ├── pkcs11.go │ │ │ ├── pkcs11.h │ │ │ ├── pkcs11f.h │ │ │ ├── pkcs11t.h │ │ │ ├── softhsm.conf │ │ │ └── types.go │ ├── mitchellh │ │ └── mapstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ └── mapstructure.go │ ├── op │ │ └── go-logging │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backend.go │ │ │ ├── format.go │ │ │ ├── level.go │ │ │ ├── log_nix.go │ │ │ ├── log_windows.go │ │ │ ├── logger.go │ │ │ ├── memory.go │ │ │ ├── multi.go │ │ │ ├── syslog.go │ │ │ └── syslog_fallback.go │ ├── opencontainers │ │ └── runc │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── libcontainer │ │ │ └── user │ │ │ ├── MAINTAINERS │ │ │ ├── lookup.go │ │ │ ├── lookup_unix.go │ │ │ ├── lookup_unsupported.go │ │ │ └── user.go │ ├── pierrec │ │ ├── lz4 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── lz4.go │ │ │ ├── reader.go │ │ │ └── writer.go │ │ └── xxHash │ │ │ ├── LICENSE │ │ │ └── xxHash32 │ │ │ └── xxHash32.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── rcrowley │ │ └── go-metrics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── counter.go │ │ │ ├── debug.go │ │ │ ├── ewma.go │ │ │ ├── gauge.go │ │ │ ├── gauge_float64.go │ │ │ ├── graphite.go │ │ │ ├── healthcheck.go │ │ │ ├── histogram.go │ │ │ ├── json.go │ │ │ ├── log.go │ │ │ ├── memory.md │ │ │ ├── meter.go │ │ │ ├── metrics.go │ │ │ ├── opentsdb.go │ │ │ ├── registry.go │ │ │ ├── runtime.go │ │ │ ├── runtime_cgo.go │ │ │ ├── runtime_gccpufraction.go │ │ │ ├── runtime_no_cgo.go │ │ │ ├── runtime_no_gccpufraction.go │ │ │ ├── sample.go │ │ │ ├── syslog.go │ │ │ ├── timer.go │ │ │ ├── validate.sh │ │ │ └── writer.go │ ├── russross │ │ └── blackfriday │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── latex.go │ │ │ ├── markdown.go │ │ │ └── smartypants.go │ ├── shurcooL │ │ └── sanitized_anchor_name │ │ │ ├── README.md │ │ │ └── main.go │ ├── spf13 │ │ ├── cast │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cast.go │ │ │ └── caste.go │ │ ├── cobra │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ └── command_win.go │ │ ├── jwalterweatherman │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── thatswhyyoualwaysleaveanote.go │ │ ├── pflag │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ └── uint8.go │ │ └── viper │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── util.go │ │ │ └── viper.go │ ├── stretchr │ │ ├── objx │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── accessors.go │ │ │ ├── constants.go │ │ │ ├── conversions.go │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── mutations.go │ │ │ ├── security.go │ │ │ ├── tests.go │ │ │ ├── type_specific_codegen.go │ │ │ └── value.go │ │ └── testify │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ │ │ ├── mock │ │ │ ├── doc.go │ │ │ └── mock.go │ │ │ └── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ └── requirements.go │ └── syndtr │ │ └── goleveldb │ │ ├── LICENSE │ │ └── leveldb │ │ ├── batch.go │ │ ├── cache │ │ ├── cache.go │ │ └── lru.go │ │ ├── comparer.go │ │ ├── comparer │ │ ├── bytes_comparer.go │ │ └── comparer.go │ │ ├── db.go │ │ ├── db_compaction.go │ │ ├── db_iter.go │ │ ├── db_snapshot.go │ │ ├── db_state.go │ │ ├── db_transaction.go │ │ ├── db_util.go │ │ ├── db_write.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── errors │ │ └── errors.go │ │ ├── filter.go │ │ ├── filter │ │ ├── bloom.go │ │ └── filter.go │ │ ├── iterator │ │ ├── array_iter.go │ │ ├── indexed_iter.go │ │ ├── iter.go │ │ └── merged_iter.go │ │ ├── journal │ │ └── journal.go │ │ ├── key.go │ │ ├── memdb │ │ └── memdb.go │ │ ├── opt │ │ └── options.go │ │ ├── options.go │ │ ├── session.go │ │ ├── session_compaction.go │ │ ├── session_record.go │ │ ├── session_util.go │ │ ├── storage │ │ ├── file_storage.go │ │ ├── file_storage_nacl.go │ │ ├── file_storage_plan9.go │ │ ├── file_storage_solaris.go │ │ ├── file_storage_unix.go │ │ ├── file_storage_windows.go │ │ ├── mem_storage.go │ │ └── storage.go │ │ ├── table.go │ │ ├── table │ │ ├── reader.go │ │ ├── table.go │ │ └── writer.go │ │ ├── util.go │ │ ├── util │ │ ├── buffer.go │ │ ├── buffer_pool.go │ │ ├── crc32.go │ │ ├── hash.go │ │ ├── range.go │ │ └── util.go │ │ └── version.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── hkdf │ │ │ └── hkdf.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── shake.go │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ └── ssh │ │ │ ├── buffer.go │ │ │ ├── certs.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── handshake.go │ │ │ ├── kex.go │ │ │ ├── keys.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── tcpip.go │ │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ └── util_windows.go │ │ │ └── transport.go │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── pre_go17.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http2 │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── ping_test.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ └── punycode_test.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── error_posix.go │ │ │ │ ├── error_stub.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ ├── rlimit_stub.go │ │ │ │ ├── rlimit_unix.go │ │ │ │ ├── rlimit_windows.go │ │ │ │ ├── stack.go │ │ │ │ ├── stack_stub.go │ │ │ │ ├── stack_unix.go │ │ │ │ └── stack_windows.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── bpf_test.go │ │ │ ├── bpfopt_linux.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt_posix.go │ │ │ ├── dgramopt_stub.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt_posix.go │ │ │ ├── genericopt_stub.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_asmreq.go │ │ │ ├── sockopt_asmreq_stub.go │ │ │ ├── sockopt_asmreq_unix.go │ │ │ ├── sockopt_asmreq_windows.go │ │ │ ├── sockopt_asmreqn_stub.go │ │ │ ├── sockopt_asmreqn_unix.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── sockopt_ssmreq_unix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_unix.go │ │ │ ├── sockopt_windows.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_openbsd.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_unix.go │ │ │ ├── thunk_linux_386.s │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── bpf_test.go │ │ │ ├── bpfopt_linux.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt_posix.go │ │ │ ├── dgramopt_stub.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt_posix.go │ │ │ ├── genericopt_stub.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_asmreq_unix.go │ │ │ ├── sockopt_asmreq_windows.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── sockopt_ssmreq_unix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sockopt_unix.go │ │ │ ├── sockopt_windows.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_unix.go │ │ │ ├── thunk_linux_386.s │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ └── httplex.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── syscall.s │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── unix │ │ │ ├── asm.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── constants.go │ │ │ ├── env_unix.go │ │ │ ├── env_unset.go │ │ │ ├── flock.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── gccgo_linux_sparc64.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_linux.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_linux.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── tools │ │ ├── cmd │ │ └── cover │ │ │ ├── README │ │ │ ├── cover.go │ │ │ ├── cover_test.go │ │ │ ├── doc.go │ │ │ ├── func.go │ │ │ └── html.go │ │ └── cover │ │ └── profile.go │ ├── google.golang.org │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ └── grpc │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PATENTS │ │ ├── README.md │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── coverage.sh │ │ ├── credentials │ │ ├── credentials.go │ │ ├── credentials_util_go17.go │ │ ├── credentials_util_go18.go │ │ └── credentials_util_pre_go17.go │ │ ├── doc.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── grpclb.go │ │ ├── grpclb │ │ └── grpc_lb_v1 │ │ │ ├── grpclb.pb.go │ │ │ └── grpclb.proto │ │ ├── grpclog │ │ └── logger.go │ │ ├── interceptor.go │ │ ├── internal │ │ └── internal.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── proxy.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── status │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ └── transport │ │ ├── control.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ └── transport.go │ ├── google │ └── protobuf │ │ ├── empty.pb.go │ │ └── timestamp.pb.go │ ├── gopkg.in │ ├── alecthomas │ │ └── kingpin.v2 │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── actions.go │ │ │ ├── app.go │ │ │ ├── args.go │ │ │ ├── cmd.go │ │ │ ├── completions.go │ │ │ ├── doc.go │ │ │ ├── envar.go │ │ │ ├── flags.go │ │ │ ├── global.go │ │ │ ├── guesswidth.go │ │ │ ├── guesswidth_unix.go │ │ │ ├── model.go │ │ │ ├── parser.go │ │ │ ├── parsers.go │ │ │ ├── templates.go │ │ │ ├── usage.go │ │ │ ├── values.go │ │ │ ├── values.json │ │ │ └── values_generated.go │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── vendor.json └── t4cloud.com └── asset_manager ├── chaincode └── assetsManager.go └── deploy ├── config └── README.md ├── configtx.yaml ├── configtxgen ├── crypto-config.yaml ├── cryptogen └── docker-compose.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/README.md -------------------------------------------------------------------------------- /fabric/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/.dockerignore -------------------------------------------------------------------------------- /fabric/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/.gitattributes -------------------------------------------------------------------------------- /fabric/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/.gitignore -------------------------------------------------------------------------------- /fabric/.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/.gitreview -------------------------------------------------------------------------------- /fabric/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/.travis.yml -------------------------------------------------------------------------------- /fabric/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/CHANGELOG.md -------------------------------------------------------------------------------- /fabric/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /fabric/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/CONTRIBUTING.md -------------------------------------------------------------------------------- /fabric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/LICENSE -------------------------------------------------------------------------------- /fabric/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/Makefile -------------------------------------------------------------------------------- /fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/README.md -------------------------------------------------------------------------------- /fabric/bccsp/aesopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/aesopts.go -------------------------------------------------------------------------------- /fabric/bccsp/bccsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/bccsp.go -------------------------------------------------------------------------------- /fabric/bccsp/bccsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/bccsp_test.go -------------------------------------------------------------------------------- /fabric/bccsp/ecdsaopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/ecdsaopts.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/factory.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/factory_test.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/nopkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/nopkcs11.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/opts.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/opts_test.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/pkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/pkcs11.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/pkcs11_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/pkcs11_test.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/pkcs11factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/pkcs11factory.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/swfactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/swfactory.go -------------------------------------------------------------------------------- /fabric/bccsp/factory/swfactory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/factory/swfactory_test.go -------------------------------------------------------------------------------- /fabric/bccsp/hashopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/hashopts.go -------------------------------------------------------------------------------- /fabric/bccsp/keystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/keystore.go -------------------------------------------------------------------------------- /fabric/bccsp/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/mocks/mocks.go -------------------------------------------------------------------------------- /fabric/bccsp/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/opts.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/conf.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/ecdsa.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/ecdsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/ecdsa_test.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/ecdsakey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/ecdsakey.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/ecdsakey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/ecdsakey_test.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/impl.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/impl_test.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/pkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/pkcs11.go -------------------------------------------------------------------------------- /fabric/bccsp/pkcs11/pkcs11_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/pkcs11/pkcs11_test.go -------------------------------------------------------------------------------- /fabric/bccsp/rsaopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/rsaopts.go -------------------------------------------------------------------------------- /fabric/bccsp/signer/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/signer/signer.go -------------------------------------------------------------------------------- /fabric/bccsp/signer/signer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/signer/signer_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/aes.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/aes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/aes_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/aeskey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/aeskey.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/conf.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/dummyks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/dummyks.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/dummyks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/dummyks_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/ecdsa.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/ecdsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/ecdsa_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/ecdsakey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/ecdsakey.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/enc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/enc_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/fileks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/fileks.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/fileks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/fileks_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/hash.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/hash_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/impl.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/impl_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/internals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/internals.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/keyderiv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/keyderiv.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/keyderiv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/keyderiv_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/keygen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/keygen.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/keygen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/keygen_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/keyimport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/keyimport.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/keyimport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/keyimport_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/mocks/mocks.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/rsa.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/rsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/rsa_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/rsakey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/rsakey.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/sign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/sign_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/sw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/sw_test.go -------------------------------------------------------------------------------- /fabric/bccsp/sw/verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/sw/verify_test.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/errs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/errs.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/errs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/errs_test.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/io.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/io_test.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/keys.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/keys_test.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/slice.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/slice_test.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/x509.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/x509.go -------------------------------------------------------------------------------- /fabric/bccsp/utils/x509_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bccsp/utils/x509_test.go -------------------------------------------------------------------------------- /fabric/bddtests/.behaverc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/.behaverc -------------------------------------------------------------------------------- /fabric/bddtests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/README.md -------------------------------------------------------------------------------- /fabric/bddtests/bddtests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/bddtests_test.go -------------------------------------------------------------------------------- /fabric/bddtests/chaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/chaincode.go -------------------------------------------------------------------------------- /fabric/bddtests/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/common/__init__.py -------------------------------------------------------------------------------- /fabric/bddtests/common/common_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/common/common_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/common/common_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/common/common_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/common/configtx_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/common/configtx_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/common/ledger_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/common/ledger_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/common/ledger_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/common/ledger_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/common/policies_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/common/policies_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/compose.go -------------------------------------------------------------------------------- /fabric/bddtests/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/conn.go -------------------------------------------------------------------------------- /fabric/bddtests/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/context.go -------------------------------------------------------------------------------- /fabric/bddtests/context_bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/context_bootstrap.go -------------------------------------------------------------------------------- /fabric/bddtests/context_endorser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/context_endorser.go -------------------------------------------------------------------------------- /fabric/bddtests/dc-base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/dc-base.yml -------------------------------------------------------------------------------- /fabric/bddtests/dc-orderer-base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/dc-orderer-base.yml -------------------------------------------------------------------------------- /fabric/bddtests/dc-orderer-kafka-base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/dc-orderer-kafka-base.yml -------------------------------------------------------------------------------- /fabric/bddtests/dc-orderer-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/dc-orderer-kafka.yml -------------------------------------------------------------------------------- /fabric/bddtests/dc-peer-base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/dc-peer-base.yml -------------------------------------------------------------------------------- /fabric/bddtests/dc-peer-couchdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/dc-peer-couchdb.yml -------------------------------------------------------------------------------- /fabric/bddtests/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/docker.go -------------------------------------------------------------------------------- /fabric/bddtests/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/environment.py -------------------------------------------------------------------------------- /fabric/bddtests/features/endorser.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/features/endorser.feature -------------------------------------------------------------------------------- /fabric/bddtests/features/orderer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/features/orderer.feature -------------------------------------------------------------------------------- /fabric/bddtests/msp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/msp/__init__.py -------------------------------------------------------------------------------- /fabric/bddtests/msp/identities_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/msp/identities_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/msp/msp_config_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/msp/msp_config_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/msp/msp_principal_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/msp/msp_principal_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/orderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/orderer/__init__.py -------------------------------------------------------------------------------- /fabric/bddtests/orderer/ab_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/orderer/ab_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/orderer/ab_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/orderer/ab_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/orderer/kafka_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/orderer/kafka_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/orderer/kafka_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/orderer/kafka_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/__init__.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/admin_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/admin_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/admin_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/admin_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/chaincode_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/chaincode_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/configuration_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/configuration_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/events_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/events_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/events_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/events_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/peer_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/peer_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/peer_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/peer_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/proposal_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/proposal_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/proposal_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/proposal_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/query_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/query_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/query_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/query_pb2_grpc.py -------------------------------------------------------------------------------- /fabric/bddtests/peer/transaction_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/peer/transaction_pb2.py -------------------------------------------------------------------------------- /fabric/bddtests/regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/regression/README.md -------------------------------------------------------------------------------- /fabric/bddtests/regression/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/regression/go/README.md -------------------------------------------------------------------------------- /fabric/bddtests/regression/go/ote/ote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/regression/go/ote/ote.go -------------------------------------------------------------------------------- /fabric/bddtests/regression/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/regression/node/README.md -------------------------------------------------------------------------------- /fabric/bddtests/scripts/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/scripts/wait-for-it.sh -------------------------------------------------------------------------------- /fabric/bddtests/steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/__init__.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/bdd_grpc_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/bdd_grpc_util.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/bdd_test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/bdd_test_util.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/bootstrap_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/bootstrap_impl.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/bootstrap_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/bootstrap_util.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/compose.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/contexthelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/contexthelper.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/coverage.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/docgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/docgen.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/endorser_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/endorser_impl.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/endorser_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/endorser_util.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/orderer_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/orderer_impl.py -------------------------------------------------------------------------------- /fabric/bddtests/steps/orderer_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/steps/orderer_util.py -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/cli.html -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/error.html -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/graph.html -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/main.html -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/org.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/org.html -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/report.css -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/step.html -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/tag.html -------------------------------------------------------------------------------- /fabric/bddtests/templates/html/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/templates/html/user.html -------------------------------------------------------------------------------- /fabric/bddtests/tlsca.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/tlsca.cert -------------------------------------------------------------------------------- /fabric/bddtests/tlsca.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/tlsca.priv -------------------------------------------------------------------------------- /fabric/bddtests/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/users.go -------------------------------------------------------------------------------- /fabric/bddtests/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/bddtests/util.go -------------------------------------------------------------------------------- /fabric/ci.properties: -------------------------------------------------------------------------------- 1 | GO_VER=1.7.5 2 | -------------------------------------------------------------------------------- /fabric/common/cauthdsl/cauthdsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/cauthdsl/cauthdsl.go -------------------------------------------------------------------------------- /fabric/common/cauthdsl/cauthdsl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/cauthdsl/cauthdsl_test.go -------------------------------------------------------------------------------- /fabric/common/cauthdsl/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/cauthdsl/policy.go -------------------------------------------------------------------------------- /fabric/common/cauthdsl/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/cauthdsl/policy_test.go -------------------------------------------------------------------------------- /fabric/common/cauthdsl/policy_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/cauthdsl/policy_util.go -------------------------------------------------------------------------------- /fabric/common/cauthdsl/policyparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/cauthdsl/policyparser.go -------------------------------------------------------------------------------- /fabric/common/config/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/api.go -------------------------------------------------------------------------------- /fabric/common/config/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/application.go -------------------------------------------------------------------------------- /fabric/common/config/application_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/application_test.go -------------------------------------------------------------------------------- /fabric/common/config/application_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/application_util.go -------------------------------------------------------------------------------- /fabric/common/config/applicationorg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/applicationorg.go -------------------------------------------------------------------------------- /fabric/common/config/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/channel.go -------------------------------------------------------------------------------- /fabric/common/config/channel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/channel_test.go -------------------------------------------------------------------------------- /fabric/common/config/channel_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/channel_util.go -------------------------------------------------------------------------------- /fabric/common/config/consortium.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/consortium.go -------------------------------------------------------------------------------- /fabric/common/config/consortium_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/consortium_test.go -------------------------------------------------------------------------------- /fabric/common/config/consortiums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/consortiums.go -------------------------------------------------------------------------------- /fabric/common/config/consortiums_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/consortiums_test.go -------------------------------------------------------------------------------- /fabric/common/config/consortiums_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/consortiums_util.go -------------------------------------------------------------------------------- /fabric/common/config/msp/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/msp/config.go -------------------------------------------------------------------------------- /fabric/common/config/msp/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/msp/config_test.go -------------------------------------------------------------------------------- /fabric/common/config/msp/config_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/msp/config_util.go -------------------------------------------------------------------------------- /fabric/common/config/orderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/orderer.go -------------------------------------------------------------------------------- /fabric/common/config/orderer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/orderer_test.go -------------------------------------------------------------------------------- /fabric/common/config/orderer_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/orderer_util.go -------------------------------------------------------------------------------- /fabric/common/config/organization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/organization.go -------------------------------------------------------------------------------- /fabric/common/config/organization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/organization_test.go -------------------------------------------------------------------------------- /fabric/common/config/proposer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/proposer.go -------------------------------------------------------------------------------- /fabric/common/config/proposer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/proposer_test.go -------------------------------------------------------------------------------- /fabric/common/config/realconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/realconfig_test.go -------------------------------------------------------------------------------- /fabric/common/config/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/root.go -------------------------------------------------------------------------------- /fabric/common/config/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/root_test.go -------------------------------------------------------------------------------- /fabric/common/config/standardvalues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/config/standardvalues.go -------------------------------------------------------------------------------- /fabric/common/configtx/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/api/api.go -------------------------------------------------------------------------------- /fabric/common/configtx/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/compare.go -------------------------------------------------------------------------------- /fabric/common/configtx/compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/compare_test.go -------------------------------------------------------------------------------- /fabric/common/configtx/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/config.go -------------------------------------------------------------------------------- /fabric/common/configtx/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/config_test.go -------------------------------------------------------------------------------- /fabric/common/configtx/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/configmap.go -------------------------------------------------------------------------------- /fabric/common/configtx/configmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/configmap_test.go -------------------------------------------------------------------------------- /fabric/common/configtx/initializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/initializer.go -------------------------------------------------------------------------------- /fabric/common/configtx/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/manager.go -------------------------------------------------------------------------------- /fabric/common/configtx/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/manager_test.go -------------------------------------------------------------------------------- /fabric/common/configtx/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/template.go -------------------------------------------------------------------------------- /fabric/common/configtx/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/template_test.go -------------------------------------------------------------------------------- /fabric/common/configtx/test/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/test/helper.go -------------------------------------------------------------------------------- /fabric/common/configtx/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/update.go -------------------------------------------------------------------------------- /fabric/common/configtx/update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/update_test.go -------------------------------------------------------------------------------- /fabric/common/configtx/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/util.go -------------------------------------------------------------------------------- /fabric/common/configtx/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/configtx/util_test.go -------------------------------------------------------------------------------- /fabric/common/crypto/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/crypto/random.go -------------------------------------------------------------------------------- /fabric/common/crypto/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/crypto/signer.go -------------------------------------------------------------------------------- /fabric/common/errors/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/errors/codes.go -------------------------------------------------------------------------------- /fabric/common/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/errors/errors.go -------------------------------------------------------------------------------- /fabric/common/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/errors/errors_test.go -------------------------------------------------------------------------------- /fabric/common/flogging/grpclogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/flogging/grpclogger.go -------------------------------------------------------------------------------- /fabric/common/flogging/grpclogger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/flogging/grpclogger_test.go -------------------------------------------------------------------------------- /fabric/common/flogging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/flogging/logging.go -------------------------------------------------------------------------------- /fabric/common/flogging/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/flogging/logging_test.go -------------------------------------------------------------------------------- /fabric/common/genesis/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/genesis/genesis.go -------------------------------------------------------------------------------- /fabric/common/genesis/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/genesis/genesis_test.go -------------------------------------------------------------------------------- /fabric/common/ledger/ledger_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/ledger/ledger_interface.go -------------------------------------------------------------------------------- /fabric/common/ledger/util/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/ledger/util/ioutil.go -------------------------------------------------------------------------------- /fabric/common/ledger/util/ioutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/ledger/util/ioutil_test.go -------------------------------------------------------------------------------- /fabric/common/ledger/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/ledger/util/util.go -------------------------------------------------------------------------------- /fabric/common/ledger/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/ledger/util/util_test.go -------------------------------------------------------------------------------- /fabric/common/localmsp/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/localmsp/signer.go -------------------------------------------------------------------------------- /fabric/common/localmsp/signer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/localmsp/signer_test.go -------------------------------------------------------------------------------- /fabric/common/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/metadata/metadata.go -------------------------------------------------------------------------------- /fabric/common/mocks/config/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/config/channel.go -------------------------------------------------------------------------------- /fabric/common/mocks/config/orderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/config/orderer.go -------------------------------------------------------------------------------- /fabric/common/mocks/configtx/configtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/configtx/configtx.go -------------------------------------------------------------------------------- /fabric/common/mocks/crypto/localsigner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/crypto/localsigner.go -------------------------------------------------------------------------------- /fabric/common/mocks/msp/noopmsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/msp/noopmsp.go -------------------------------------------------------------------------------- /fabric/common/mocks/msp/noopmsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/msp/noopmsp_test.go -------------------------------------------------------------------------------- /fabric/common/mocks/peer/mockccstream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/peer/mockccstream.go -------------------------------------------------------------------------------- /fabric/common/mocks/policies/policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/policies/policies.go -------------------------------------------------------------------------------- /fabric/common/mocks/scc/sccprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/mocks/scc/sccprovider.go -------------------------------------------------------------------------------- /fabric/common/policies/implicitmeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/policies/implicitmeta.go -------------------------------------------------------------------------------- /fabric/common/policies/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/policies/policy.go -------------------------------------------------------------------------------- /fabric/common/policies/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/policies/policy_test.go -------------------------------------------------------------------------------- /fabric/common/tools/configtxlator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/tools/configtxlator/main.go -------------------------------------------------------------------------------- /fabric/common/tools/cryptogen/csp/csp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/tools/cryptogen/csp/csp.go -------------------------------------------------------------------------------- /fabric/common/tools/cryptogen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/tools/cryptogen/main.go -------------------------------------------------------------------------------- /fabric/common/tools/protolator/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/tools/protolator/api.go -------------------------------------------------------------------------------- /fabric/common/tools/protolator/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/tools/protolator/dynamic.go -------------------------------------------------------------------------------- /fabric/common/tools/protolator/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/tools/protolator/json.go -------------------------------------------------------------------------------- /fabric/common/tools/protolator/nested.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/tools/protolator/nested.go -------------------------------------------------------------------------------- /fabric/common/util/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/util/net.go -------------------------------------------------------------------------------- /fabric/common/util/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/util/net_test.go -------------------------------------------------------------------------------- /fabric/common/util/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/util/utils.go -------------------------------------------------------------------------------- /fabric/common/util/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/util/utils_test.go -------------------------------------------------------------------------------- /fabric/common/viperutil/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/viperutil/config_test.go -------------------------------------------------------------------------------- /fabric/common/viperutil/config_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/common/viperutil/config_util.go -------------------------------------------------------------------------------- /fabric/core/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/admin.go -------------------------------------------------------------------------------- /fabric/core/admin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/admin_test.go -------------------------------------------------------------------------------- /fabric/core/chaincode/ccproviderimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/ccproviderimpl.go -------------------------------------------------------------------------------- /fabric/core/chaincode/chaincodeexec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/chaincodeexec.go -------------------------------------------------------------------------------- /fabric/core/chaincode/chaincodetest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/chaincodetest.yaml -------------------------------------------------------------------------------- /fabric/core/chaincode/concurrency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/concurrency_test.go -------------------------------------------------------------------------------- /fabric/core/chaincode/exectransaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/exectransaction.go -------------------------------------------------------------------------------- /fabric/core/chaincode/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/handler.go -------------------------------------------------------------------------------- /fabric/core/chaincode/multichains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/multichains_test.go -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles1/a.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles1/a/a1.txt: -------------------------------------------------------------------------------- 1 | a1 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles1/a/a2.txt: -------------------------------------------------------------------------------- 1 | a2 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles1/b.txt: -------------------------------------------------------------------------------- 1 | b 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles1/b/c.txt: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles1/b/c/c1.txt: -------------------------------------------------------------------------------- 1 | c1 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles2/x.txt: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles2/x/z.txt: -------------------------------------------------------------------------------- 1 | z 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles2/x/z/z1.txt: -------------------------------------------------------------------------------- 1 | z1 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles2/y.txt: -------------------------------------------------------------------------------- 1 | y 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles2/y/y1.txt: -------------------------------------------------------------------------------- 1 | y1 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/platforms/util/hashtestfiles2/y/y2.txt: -------------------------------------------------------------------------------- 1 | y2 2 | -------------------------------------------------------------------------------- /fabric/core/chaincode/shim/chaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/shim/chaincode.go -------------------------------------------------------------------------------- /fabric/core/chaincode/shim/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/shim/handler.go -------------------------------------------------------------------------------- /fabric/core/chaincode/shim/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/shim/interfaces.go -------------------------------------------------------------------------------- /fabric/core/chaincode/shim/mockstub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/shim/mockstub.go -------------------------------------------------------------------------------- /fabric/core/chaincode/shim/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/shim/response.go -------------------------------------------------------------------------------- /fabric/core/chaincode/shim/shim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/shim/shim_test.go -------------------------------------------------------------------------------- /fabric/core/chaincode/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/chaincode/upgrade_test.go -------------------------------------------------------------------------------- /fabric/core/comm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/config.go -------------------------------------------------------------------------------- /fabric/core/comm/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/config_test.go -------------------------------------------------------------------------------- /fabric/core/comm/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/connection.go -------------------------------------------------------------------------------- /fabric/core/comm/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/connection_test.go -------------------------------------------------------------------------------- /fabric/core/comm/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/creds.go -------------------------------------------------------------------------------- /fabric/core/comm/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/creds_test.go -------------------------------------------------------------------------------- /fabric/core/comm/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/producer.go -------------------------------------------------------------------------------- /fabric/core/comm/producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/producer_test.go -------------------------------------------------------------------------------- /fabric/core/comm/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/server.go -------------------------------------------------------------------------------- /fabric/core/comm/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/server_test.go -------------------------------------------------------------------------------- /fabric/core/comm/testdata/grpc/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/testdata/grpc/test.pb.go -------------------------------------------------------------------------------- /fabric/core/comm/testdata/grpc/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/comm/testdata/grpc/test.proto -------------------------------------------------------------------------------- /fabric/core/committer/committer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/committer/committer.go -------------------------------------------------------------------------------- /fabric/core/committer/committer_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/committer/committer_impl.go -------------------------------------------------------------------------------- /fabric/core/committer/committer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/committer/committer_test.go -------------------------------------------------------------------------------- /fabric/core/common/ccpackage/ccpackage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/common/ccpackage/ccpackage.go -------------------------------------------------------------------------------- /fabric/core/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/config/config.go -------------------------------------------------------------------------------- /fabric/core/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/config/config_test.go -------------------------------------------------------------------------------- /fabric/core/container/api/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/api/core.go -------------------------------------------------------------------------------- /fabric/core/container/ccintf/ccintf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/ccintf/ccintf.go -------------------------------------------------------------------------------- /fabric/core/container/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/controller.go -------------------------------------------------------------------------------- /fabric/core/container/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/controller_test.go -------------------------------------------------------------------------------- /fabric/core/container/util/dockerutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/util/dockerutil.go -------------------------------------------------------------------------------- /fabric/core/container/util/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/util/writer.go -------------------------------------------------------------------------------- /fabric/core/container/util/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/util/writer_test.go -------------------------------------------------------------------------------- /fabric/core/container/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/vm.go -------------------------------------------------------------------------------- /fabric/core/container/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/container/vm_test.go -------------------------------------------------------------------------------- /fabric/core/deliverservice/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/deliverservice/client.go -------------------------------------------------------------------------------- /fabric/core/deliverservice/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/deliverservice/client_test.go -------------------------------------------------------------------------------- /fabric/core/deliverservice/requester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/deliverservice/requester.go -------------------------------------------------------------------------------- /fabric/core/endorser/endorser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/endorser/endorser.go -------------------------------------------------------------------------------- /fabric/core/endorser/endorser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/endorser/endorser_test.go -------------------------------------------------------------------------------- /fabric/core/endorser/endorser_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/endorser/endorser_test.yaml -------------------------------------------------------------------------------- /fabric/core/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/fsm.go -------------------------------------------------------------------------------- /fabric/core/fsm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/fsm_test.go -------------------------------------------------------------------------------- /fabric/core/ledger/kvledger/kv_ledger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/kvledger/kv_ledger.go -------------------------------------------------------------------------------- /fabric/core/ledger/kvledger/pkg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/kvledger/pkg_test.go -------------------------------------------------------------------------------- /fabric/core/ledger/kvledger/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/kvledger/recovery.go -------------------------------------------------------------------------------- /fabric/core/ledger/ledger_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/ledger_interface.go -------------------------------------------------------------------------------- /fabric/core/ledger/testutil/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/testutil/test_util.go -------------------------------------------------------------------------------- /fabric/core/ledger/util/couchdb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/util/couchdb/config.go -------------------------------------------------------------------------------- /fabric/core/ledger/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/util/util.go -------------------------------------------------------------------------------- /fabric/core/ledger/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/ledger/util/util_test.go -------------------------------------------------------------------------------- /fabric/core/mocks/txvalidator/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/mocks/txvalidator/support.go -------------------------------------------------------------------------------- /fabric/core/mocks/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/mocks/validator/validator.go -------------------------------------------------------------------------------- /fabric/core/peer/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/config.go -------------------------------------------------------------------------------- /fabric/core/peer/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/config_test.go -------------------------------------------------------------------------------- /fabric/core/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/peer.go -------------------------------------------------------------------------------- /fabric/core/peer/peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/peer_test.go -------------------------------------------------------------------------------- /fabric/core/peer/pkg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/pkg_test.go -------------------------------------------------------------------------------- /fabric/core/peer/testdata/Org1-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/testdata/Org1-cert.pem -------------------------------------------------------------------------------- /fabric/core/peer/testdata/Org2-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/testdata/Org2-cert.pem -------------------------------------------------------------------------------- /fabric/core/peer/testdata/Org3-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/testdata/Org3-cert.pem -------------------------------------------------------------------------------- /fabric/core/peer/testdata/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/peer/testdata/generate.go -------------------------------------------------------------------------------- /fabric/core/policy/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/policy/mocks/mocks.go -------------------------------------------------------------------------------- /fabric/core/policy/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/policy/policy.go -------------------------------------------------------------------------------- /fabric/core/policy/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/policy/policy_test.go -------------------------------------------------------------------------------- /fabric/core/policyprovider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/policyprovider/provider.go -------------------------------------------------------------------------------- /fabric/core/scc/cscc/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/cscc/configure.go -------------------------------------------------------------------------------- /fabric/core/scc/cscc/configure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/cscc/configure_test.go -------------------------------------------------------------------------------- /fabric/core/scc/importsysccs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/importsysccs.go -------------------------------------------------------------------------------- /fabric/core/scc/lscc/lscc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/lscc/lscc.go -------------------------------------------------------------------------------- /fabric/core/scc/lscc/lscc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/lscc/lscc_test.go -------------------------------------------------------------------------------- /fabric/core/scc/qscc/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/qscc/query.go -------------------------------------------------------------------------------- /fabric/core/scc/qscc/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/qscc/query_test.go -------------------------------------------------------------------------------- /fabric/core/scc/scc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/scc_test.go -------------------------------------------------------------------------------- /fabric/core/scc/sccproviderimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/sccproviderimpl.go -------------------------------------------------------------------------------- /fabric/core/scc/sysccapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/scc/sysccapi.go -------------------------------------------------------------------------------- /fabric/core/testutil/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/core/testutil/config.go -------------------------------------------------------------------------------- /fabric/devenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/README.md -------------------------------------------------------------------------------- /fabric/devenv/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/Vagrantfile -------------------------------------------------------------------------------- /fabric/devenv/failure-motd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/failure-motd.in -------------------------------------------------------------------------------- /fabric/devenv/golang_buildcmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/golang_buildcmd.sh -------------------------------------------------------------------------------- /fabric/devenv/golang_buildpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/golang_buildpkg.sh -------------------------------------------------------------------------------- /fabric/devenv/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/limits.conf -------------------------------------------------------------------------------- /fabric/devenv/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/setup.sh -------------------------------------------------------------------------------- /fabric/devenv/setupRHELonZ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/setupRHELonZ.sh -------------------------------------------------------------------------------- /fabric/devenv/setupUbuntuOnPPC64le.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/setupUbuntuOnPPC64le.sh -------------------------------------------------------------------------------- /fabric/devenv/tools/couchdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/devenv/tools/couchdb -------------------------------------------------------------------------------- /fabric/docker-env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docker-env.mk -------------------------------------------------------------------------------- /fabric/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /fabric/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/Makefile -------------------------------------------------------------------------------- /fabric/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/README.md -------------------------------------------------------------------------------- /fabric/docs/custom_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/custom_theme/searchbox.html -------------------------------------------------------------------------------- /fabric/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/requirements.txt -------------------------------------------------------------------------------- /fabric/docs/source/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/CONTRIBUTING.rst -------------------------------------------------------------------------------- /fabric/docs/source/DCO1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/DCO1.1.txt -------------------------------------------------------------------------------- /fabric/docs/source/Fabric-FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/Fabric-FAQ.rst -------------------------------------------------------------------------------- /fabric/docs/source/Gerrit/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/Gerrit/changes.rst -------------------------------------------------------------------------------- /fabric/docs/source/Gerrit/gerrit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/Gerrit/gerrit.rst -------------------------------------------------------------------------------- /fabric/docs/source/Gerrit/lf-account.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/Gerrit/lf-account.rst -------------------------------------------------------------------------------- /fabric/docs/source/Gerrit/reviewing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/Gerrit/reviewing.rst -------------------------------------------------------------------------------- /fabric/docs/source/MAINTAINERS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/MAINTAINERS.rst -------------------------------------------------------------------------------- /fabric/docs/source/Setup/TLSSetup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/Setup/TLSSetup.rst -------------------------------------------------------------------------------- /fabric/docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /fabric/docs/source/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/_templates/footer.html -------------------------------------------------------------------------------- /fabric/docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /fabric/docs/source/arch-deep-dive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/arch-deep-dive.rst -------------------------------------------------------------------------------- /fabric/docs/source/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/architecture.rst -------------------------------------------------------------------------------- /fabric/docs/source/blockchain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/blockchain.rst -------------------------------------------------------------------------------- /fabric/docs/source/build_network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/build_network.rst -------------------------------------------------------------------------------- /fabric/docs/source/capabilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/capabilities.rst -------------------------------------------------------------------------------- /fabric/docs/source/chaincode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/chaincode.rst -------------------------------------------------------------------------------- /fabric/docs/source/chaincode4ade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/chaincode4ade.rst -------------------------------------------------------------------------------- /fabric/docs/source/chaincode4noah.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/chaincode4noah.rst -------------------------------------------------------------------------------- /fabric/docs/source/channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/channels.rst -------------------------------------------------------------------------------- /fabric/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/conf.py -------------------------------------------------------------------------------- /fabric/docs/source/configtx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/configtx.rst -------------------------------------------------------------------------------- /fabric/docs/source/configtxgen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/configtxgen.rst -------------------------------------------------------------------------------- /fabric/docs/source/configtxlator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/configtxlator.rst -------------------------------------------------------------------------------- /fabric/docs/source/dev-setup/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/dev-setup/build.rst -------------------------------------------------------------------------------- /fabric/docs/source/dev-setup/devenv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/dev-setup/devenv.rst -------------------------------------------------------------------------------- /fabric/docs/source/error-handling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/error-handling.rst -------------------------------------------------------------------------------- /fabric/docs/source/fabric-sdks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/fabric-sdks.rst -------------------------------------------------------------------------------- /fabric/docs/source/fabric_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/fabric_model.rst -------------------------------------------------------------------------------- /fabric/docs/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/getting_started.rst -------------------------------------------------------------------------------- /fabric/docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/glossary.rst -------------------------------------------------------------------------------- /fabric/docs/source/gossip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/gossip.rst -------------------------------------------------------------------------------- /fabric/docs/source/images/Jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/Jira.png -------------------------------------------------------------------------------- /fabric/docs/source/images/Jira1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/Jira1.png -------------------------------------------------------------------------------- /fabric/docs/source/images/Jira2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/Jira2.png -------------------------------------------------------------------------------- /fabric/docs/source/images/Jira3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/Jira3.png -------------------------------------------------------------------------------- /fabric/docs/source/images/Jira4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/Jira4.png -------------------------------------------------------------------------------- /fabric/docs/source/images/blocks-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/blocks-3.png -------------------------------------------------------------------------------- /fabric/docs/source/images/consensus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/consensus.png -------------------------------------------------------------------------------- /fabric/docs/source/images/flow-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/flow-4.png -------------------------------------------------------------------------------- /fabric/docs/source/images/future_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/future_net.png -------------------------------------------------------------------------------- /fabric/docs/source/images/step0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/step0.png -------------------------------------------------------------------------------- /fabric/docs/source/images/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/step1.png -------------------------------------------------------------------------------- /fabric/docs/source/images/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/step2.png -------------------------------------------------------------------------------- /fabric/docs/source/images/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/step3.png -------------------------------------------------------------------------------- /fabric/docs/source/images/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/step4.png -------------------------------------------------------------------------------- /fabric/docs/source/images/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/step5.png -------------------------------------------------------------------------------- /fabric/docs/source/images/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/step6.png -------------------------------------------------------------------------------- /fabric/docs/source/images/what.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/what.png -------------------------------------------------------------------------------- /fabric/docs/source/images/world_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/images/world_view.png -------------------------------------------------------------------------------- /fabric/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/index.rst -------------------------------------------------------------------------------- /fabric/docs/source/jira_navigation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/jira_navigation.rst -------------------------------------------------------------------------------- /fabric/docs/source/kafka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/kafka.rst -------------------------------------------------------------------------------- /fabric/docs/source/ledger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/ledger.rst -------------------------------------------------------------------------------- /fabric/docs/source/logging-control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/logging-control.rst -------------------------------------------------------------------------------- /fabric/docs/source/mdtorst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/mdtorst.sh -------------------------------------------------------------------------------- /fabric/docs/source/msp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/msp.rst -------------------------------------------------------------------------------- /fabric/docs/source/policies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/policies.rst -------------------------------------------------------------------------------- /fabric/docs/source/prereqs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/prereqs.rst -------------------------------------------------------------------------------- /fabric/docs/source/questions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/questions.rst -------------------------------------------------------------------------------- /fabric/docs/source/readwrite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/readwrite.rst -------------------------------------------------------------------------------- /fabric/docs/source/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/releases.rst -------------------------------------------------------------------------------- /fabric/docs/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/requirements.txt -------------------------------------------------------------------------------- /fabric/docs/source/samples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/samples.rst -------------------------------------------------------------------------------- /fabric/docs/source/security_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/security_model.rst -------------------------------------------------------------------------------- /fabric/docs/source/smartcontract.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/smartcontract.rst -------------------------------------------------------------------------------- /fabric/docs/source/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/status.rst -------------------------------------------------------------------------------- /fabric/docs/source/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/testing.rst -------------------------------------------------------------------------------- /fabric/docs/source/txflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/txflow.rst -------------------------------------------------------------------------------- /fabric/docs/source/usecases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/usecases.rst -------------------------------------------------------------------------------- /fabric/docs/source/videos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/videos.rst -------------------------------------------------------------------------------- /fabric/docs/source/whyfabric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/whyfabric.rst -------------------------------------------------------------------------------- /fabric/docs/source/write_first_app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/docs/source/write_first_app.rst -------------------------------------------------------------------------------- /fabric/events/consumer/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/consumer/adapter.go -------------------------------------------------------------------------------- /fabric/events/consumer/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/consumer/consumer.go -------------------------------------------------------------------------------- /fabric/events/consumer/consumer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/consumer/consumer_test.go -------------------------------------------------------------------------------- /fabric/events/producer/eventhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/producer/eventhelper.go -------------------------------------------------------------------------------- /fabric/events/producer/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/producer/events.go -------------------------------------------------------------------------------- /fabric/events/producer/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/producer/events_test.go -------------------------------------------------------------------------------- /fabric/events/producer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/producer/handler.go -------------------------------------------------------------------------------- /fabric/events/producer/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/producer/producer.go -------------------------------------------------------------------------------- /fabric/events/producer/producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/events/producer/producer_test.go -------------------------------------------------------------------------------- /fabric/examples/ccchecker/ccchecker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/ccchecker/ccchecker.go -------------------------------------------------------------------------------- /fabric/examples/ccchecker/ccchecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/ccchecker/ccchecker.json -------------------------------------------------------------------------------- /fabric/examples/ccchecker/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/ccchecker/init.go -------------------------------------------------------------------------------- /fabric/examples/ccchecker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/ccchecker/main.go -------------------------------------------------------------------------------- /fabric/examples/chaincode/go/map/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/chaincode/go/map/map.go -------------------------------------------------------------------------------- /fabric/examples/chaincode/java/.gitignore: -------------------------------------------------------------------------------- 1 | **/.classpath 2 | -------------------------------------------------------------------------------- /fabric/examples/cluster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/cluster/Makefile -------------------------------------------------------------------------------- /fabric/examples/cluster/config/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/cluster/config/core.yaml -------------------------------------------------------------------------------- /fabric/examples/cluster/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/cluster/configure.sh -------------------------------------------------------------------------------- /fabric/examples/cluster/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/cluster/usage.txt -------------------------------------------------------------------------------- /fabric/examples/configtxupdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/configtxupdate/README.md -------------------------------------------------------------------------------- /fabric/examples/e2e_cli/channel-artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/examples/e2e_cli/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/e2e_cli/configtx.yaml -------------------------------------------------------------------------------- /fabric/examples/e2e_cli/end-to-end.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/e2e_cli/end-to-end.rst -------------------------------------------------------------------------------- /fabric/examples/e2e_cli/network_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/e2e_cli/network_setup.sh -------------------------------------------------------------------------------- /fabric/examples/e2e_cli/scripts/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/examples/e2e_cli/scripts/script.sh -------------------------------------------------------------------------------- /fabric/gossip/api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/api/api_test.go -------------------------------------------------------------------------------- /fabric/gossip/api/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/api/channel.go -------------------------------------------------------------------------------- /fabric/gossip/api/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/api/crypto.go -------------------------------------------------------------------------------- /fabric/gossip/comm/comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/comm.go -------------------------------------------------------------------------------- /fabric/gossip/comm/comm_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/comm_impl.go -------------------------------------------------------------------------------- /fabric/gossip/comm/comm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/comm_test.go -------------------------------------------------------------------------------- /fabric/gossip/comm/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/conn.go -------------------------------------------------------------------------------- /fabric/gossip/comm/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/crypto.go -------------------------------------------------------------------------------- /fabric/gossip/comm/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/crypto_test.go -------------------------------------------------------------------------------- /fabric/gossip/comm/demux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/demux.go -------------------------------------------------------------------------------- /fabric/gossip/comm/demux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/demux_test.go -------------------------------------------------------------------------------- /fabric/gossip/comm/mock/mock_comm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/mock/mock_comm.go -------------------------------------------------------------------------------- /fabric/gossip/comm/mock/mock_comm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/mock/mock_comm_test.go -------------------------------------------------------------------------------- /fabric/gossip/comm/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/comm/msg.go -------------------------------------------------------------------------------- /fabric/gossip/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/common/common.go -------------------------------------------------------------------------------- /fabric/gossip/common/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/common/common_test.go -------------------------------------------------------------------------------- /fabric/gossip/discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/discovery/discovery.go -------------------------------------------------------------------------------- /fabric/gossip/discovery/discovery_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/discovery/discovery_impl.go -------------------------------------------------------------------------------- /fabric/gossip/discovery/discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/discovery/discovery_test.go -------------------------------------------------------------------------------- /fabric/gossip/election/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/election/adapter.go -------------------------------------------------------------------------------- /fabric/gossip/election/adapter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/election/adapter_test.go -------------------------------------------------------------------------------- /fabric/gossip/election/election.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/election/election.go -------------------------------------------------------------------------------- /fabric/gossip/election/election_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/election/election_test.go -------------------------------------------------------------------------------- /fabric/gossip/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/filter/filter.go -------------------------------------------------------------------------------- /fabric/gossip/filter/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/filter/filter_test.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/algo/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/algo/pull.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/algo/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/algo/pull_test.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/anchor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/anchor_test.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/batcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/batcher.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/batcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/batcher_test.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/certstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/certstore.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/certstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/certstore_test.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/channel/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/channel/channel.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/chanstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/chanstate.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/gossip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/gossip.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/gossip_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/gossip_impl.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/gossip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/gossip_test.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/msgstore/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/msgstore/msgs.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/orgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/orgs_test.go -------------------------------------------------------------------------------- /fabric/gossip/gossip/pull/pullstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/gossip/pull/pullstore.go -------------------------------------------------------------------------------- /fabric/gossip/identity/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/identity/identity.go -------------------------------------------------------------------------------- /fabric/gossip/identity/identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/identity/identity_test.go -------------------------------------------------------------------------------- /fabric/gossip/integration/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/integration/integration.go -------------------------------------------------------------------------------- /fabric/gossip/service/eventer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/service/eventer.go -------------------------------------------------------------------------------- /fabric/gossip/service/eventer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/service/eventer_test.go -------------------------------------------------------------------------------- /fabric/gossip/service/gossip_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/service/gossip_service.go -------------------------------------------------------------------------------- /fabric/gossip/service/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/service/integration_test.go -------------------------------------------------------------------------------- /fabric/gossip/service/join_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/service/join_test.go -------------------------------------------------------------------------------- /fabric/gossip/state/metastate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/state/metastate.go -------------------------------------------------------------------------------- /fabric/gossip/state/metastate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/state/metastate_test.go -------------------------------------------------------------------------------- /fabric/gossip/state/mocks/gossip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/state/mocks/gossip.go -------------------------------------------------------------------------------- /fabric/gossip/state/mocks/gossip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/state/mocks/gossip_test.go -------------------------------------------------------------------------------- /fabric/gossip/state/payloads_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/state/payloads_buffer.go -------------------------------------------------------------------------------- /fabric/gossip/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/state/state.go -------------------------------------------------------------------------------- /fabric/gossip/state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/state/state_test.go -------------------------------------------------------------------------------- /fabric/gossip/util/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/util/logging.go -------------------------------------------------------------------------------- /fabric/gossip/util/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/util/misc.go -------------------------------------------------------------------------------- /fabric/gossip/util/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/util/misc_test.go -------------------------------------------------------------------------------- /fabric/gossip/util/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/util/msgs.go -------------------------------------------------------------------------------- /fabric/gossip/util/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/util/msgs_test.go -------------------------------------------------------------------------------- /fabric/gossip/util/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/util/pubsub.go -------------------------------------------------------------------------------- /fabric/gossip/util/pubsub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gossip/util/pubsub_test.go -------------------------------------------------------------------------------- /fabric/gotools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/gotools/Makefile -------------------------------------------------------------------------------- /fabric/images/buildenv/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/buildenv/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/ccenv/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/ccenv/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/couchdb/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/couchdb/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/couchdb/local.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/couchdb/local.ini -------------------------------------------------------------------------------- /fabric/images/couchdb/vm.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/couchdb/vm.args -------------------------------------------------------------------------------- /fabric/images/javaenv/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/javaenv/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/kafka/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/kafka/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/kafka/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/kafka/docker-entrypoint.sh -------------------------------------------------------------------------------- /fabric/images/kafka/kafka-run-class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/kafka/kafka-run-class.sh -------------------------------------------------------------------------------- /fabric/images/orderer/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/orderer/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/peer/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/peer/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/testenv/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/testenv/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/testenv/install-softhsm2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/testenv/install-softhsm2.sh -------------------------------------------------------------------------------- /fabric/images/tools/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/tools/Dockerfile.in -------------------------------------------------------------------------------- /fabric/images/zookeeper/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/images/zookeeper/Dockerfile.in -------------------------------------------------------------------------------- /fabric/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/mkdocs.yml -------------------------------------------------------------------------------- /fabric/msp/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/cert.go -------------------------------------------------------------------------------- /fabric/msp/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/cert_test.go -------------------------------------------------------------------------------- /fabric/msp/configbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/configbuilder.go -------------------------------------------------------------------------------- /fabric/msp/configbuilder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/configbuilder_test.go -------------------------------------------------------------------------------- /fabric/msp/identities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/identities.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/deserializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/deserializer.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/deserializer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/deserializer_test.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/mgmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/mgmt.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/mgmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/mgmt_test.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/peermsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/peermsp_test.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/principal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/principal.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/principal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/principal_test.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/testtools/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/testtools/config.go -------------------------------------------------------------------------------- /fabric/msp/mgmt/testtools/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mgmt/testtools/config_test.go -------------------------------------------------------------------------------- /fabric/msp/msp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/msp.go -------------------------------------------------------------------------------- /fabric/msp/msp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/msp_test.go -------------------------------------------------------------------------------- /fabric/msp/mspimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mspimpl.go -------------------------------------------------------------------------------- /fabric/msp/mspmgrimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mspmgrimpl.go -------------------------------------------------------------------------------- /fabric/msp/mspwithintermediatecas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/mspwithintermediatecas_test.go -------------------------------------------------------------------------------- /fabric/msp/ouconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/ouconfig_test.go -------------------------------------------------------------------------------- /fabric/msp/revocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/revocation_test.go -------------------------------------------------------------------------------- /fabric/msp/testdata/badadmin/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/testdata/badadmin/config.yaml -------------------------------------------------------------------------------- /fabric/msp/testdata/external/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/testdata/external/config.yaml -------------------------------------------------------------------------------- /fabric/msp/testdata/tls/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/testdata/tls/config.yaml -------------------------------------------------------------------------------- /fabric/msp/testdata/tls/keystore/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/testdata/tls/keystore/key.pem -------------------------------------------------------------------------------- /fabric/msp/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/msp/tls_test.go -------------------------------------------------------------------------------- /fabric/orderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/README.md -------------------------------------------------------------------------------- /fabric/orderer/common/deliver/deliver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/common/deliver/deliver.go -------------------------------------------------------------------------------- /fabric/orderer/common/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/common/filter/filter.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/chain.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/chain_test.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/channel.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/channel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/channel_test.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/config.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/config_test.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/consenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/consenter.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/consenter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/consenter_test.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/partitioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/partitioner.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/partitioner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/partitioner_test.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/retry.go -------------------------------------------------------------------------------- /fabric/orderer/kafka/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/kafka/retry_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/blackbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/blackbox_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/file/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/file/factory.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/file/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/file/impl.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/file/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/file/impl_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/file_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/json/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/json/factory.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/json/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/json/impl.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/json/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/json/impl_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/json_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/ledger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/ledger.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/ram/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/ram/factory.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/ram/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/ram/factory_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/ram/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/ram/impl.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/ram/impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/ram/impl_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/ram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/ram_test.go -------------------------------------------------------------------------------- /fabric/orderer/ledger/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/ledger/util.go -------------------------------------------------------------------------------- /fabric/orderer/localconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/localconfig/config.go -------------------------------------------------------------------------------- /fabric/orderer/localconfig/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/localconfig/config_test.go -------------------------------------------------------------------------------- /fabric/orderer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/main.go -------------------------------------------------------------------------------- /fabric/orderer/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/main_test.go -------------------------------------------------------------------------------- /fabric/orderer/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/metadata/metadata.go -------------------------------------------------------------------------------- /fabric/orderer/metadata/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/metadata/metadata_test.go -------------------------------------------------------------------------------- /fabric/orderer/mocks/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/mocks/util/util.go -------------------------------------------------------------------------------- /fabric/orderer/mocks/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/mocks/util/util_test.go -------------------------------------------------------------------------------- /fabric/orderer/multichain/chainsupport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/multichain/chainsupport.go -------------------------------------------------------------------------------- /fabric/orderer/multichain/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/multichain/manager.go -------------------------------------------------------------------------------- /fabric/orderer/multichain/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/multichain/manager_test.go -------------------------------------------------------------------------------- /fabric/orderer/multichain/systemchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/multichain/systemchain.go -------------------------------------------------------------------------------- /fabric/orderer/multichain/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/multichain/util_test.go -------------------------------------------------------------------------------- /fabric/orderer/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/server.go -------------------------------------------------------------------------------- /fabric/orderer/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/server_test.go -------------------------------------------------------------------------------- /fabric/orderer/solo/consensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/solo/consensus.go -------------------------------------------------------------------------------- /fabric/orderer/solo/consensus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/solo/consensus_test.go -------------------------------------------------------------------------------- /fabric/orderer/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/util.go -------------------------------------------------------------------------------- /fabric/orderer/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/orderer/util_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/chaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/chaincode.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/common.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/common_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/install.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/install_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/instantiate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/instantiate.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/instantiate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/instantiate_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/invoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/invoke.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/invoke_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/invoke_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/package.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/package_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/query.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/query_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/signpackage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/signpackage.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/signpackage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/signpackage_test.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/upgrade.go -------------------------------------------------------------------------------- /fabric/peer/chaincode/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/chaincode/upgrade_test.go -------------------------------------------------------------------------------- /fabric/peer/channel/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/channel.go -------------------------------------------------------------------------------- /fabric/peer/channel/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/create.go -------------------------------------------------------------------------------- /fabric/peer/channel/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/create_test.go -------------------------------------------------------------------------------- /fabric/peer/channel/deliverclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/deliverclient.go -------------------------------------------------------------------------------- /fabric/peer/channel/fetchconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/fetchconfig.go -------------------------------------------------------------------------------- /fabric/peer/channel/fetchconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/fetchconfig_test.go -------------------------------------------------------------------------------- /fabric/peer/channel/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/join.go -------------------------------------------------------------------------------- /fabric/peer/channel/join_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/join_test.go -------------------------------------------------------------------------------- /fabric/peer/channel/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/list.go -------------------------------------------------------------------------------- /fabric/peer/channel/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/list_test.go -------------------------------------------------------------------------------- /fabric/peer/channel/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/update.go -------------------------------------------------------------------------------- /fabric/peer/channel/update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/channel/update_test.go -------------------------------------------------------------------------------- /fabric/peer/clilogging/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/clilogging/common.go -------------------------------------------------------------------------------- /fabric/peer/clilogging/getlevel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/clilogging/getlevel.go -------------------------------------------------------------------------------- /fabric/peer/clilogging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/clilogging/logging.go -------------------------------------------------------------------------------- /fabric/peer/clilogging/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/clilogging/logging_test.go -------------------------------------------------------------------------------- /fabric/peer/clilogging/revertlevels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/clilogging/revertlevels.go -------------------------------------------------------------------------------- /fabric/peer/clilogging/setlevel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/clilogging/setlevel.go -------------------------------------------------------------------------------- /fabric/peer/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/common/common.go -------------------------------------------------------------------------------- /fabric/peer/common/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/common/common_test.go -------------------------------------------------------------------------------- /fabric/peer/common/mockclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/common/mockclient.go -------------------------------------------------------------------------------- /fabric/peer/common/ordererclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/common/ordererclient.go -------------------------------------------------------------------------------- /fabric/peer/gossip/mcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/gossip/mcs.go -------------------------------------------------------------------------------- /fabric/peer/gossip/mcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/gossip/mcs_test.go -------------------------------------------------------------------------------- /fabric/peer/gossip/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/gossip/mocks/mocks.go -------------------------------------------------------------------------------- /fabric/peer/gossip/sa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/gossip/sa.go -------------------------------------------------------------------------------- /fabric/peer/gossip/sa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/gossip/sa_test.go -------------------------------------------------------------------------------- /fabric/peer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/main.go -------------------------------------------------------------------------------- /fabric/peer/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/node/node.go -------------------------------------------------------------------------------- /fabric/peer/node/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/node/start.go -------------------------------------------------------------------------------- /fabric/peer/node/start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/node/start_test.go -------------------------------------------------------------------------------- /fabric/peer/node/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/node/status.go -------------------------------------------------------------------------------- /fabric/peer/node/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/node/status_test.go -------------------------------------------------------------------------------- /fabric/peer/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/version/version.go -------------------------------------------------------------------------------- /fabric/peer/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/peer/version/version_test.go -------------------------------------------------------------------------------- /fabric/proposals/r1/Release-Process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/proposals/r1/Release-Process.md -------------------------------------------------------------------------------- /fabric/proposals/r1/blocks-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/proposals/r1/blocks-2.png -------------------------------------------------------------------------------- /fabric/proposals/r1/flow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/proposals/r1/flow-2.png -------------------------------------------------------------------------------- /fabric/protos/.protoroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/protos/common/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/block.go -------------------------------------------------------------------------------- /fabric/protos/common/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/block_test.go -------------------------------------------------------------------------------- /fabric/protos/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/common.go -------------------------------------------------------------------------------- /fabric/protos/common/common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/common.pb.go -------------------------------------------------------------------------------- /fabric/protos/common/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/common.proto -------------------------------------------------------------------------------- /fabric/protos/common/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/common_test.go -------------------------------------------------------------------------------- /fabric/protos/common/configtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/configtx.go -------------------------------------------------------------------------------- /fabric/protos/common/configtx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/configtx.pb.go -------------------------------------------------------------------------------- /fabric/protos/common/configtx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/configtx.proto -------------------------------------------------------------------------------- /fabric/protos/common/configtx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/configtx_test.go -------------------------------------------------------------------------------- /fabric/protos/common/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/configuration.go -------------------------------------------------------------------------------- /fabric/protos/common/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/configuration.pb.go -------------------------------------------------------------------------------- /fabric/protos/common/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/configuration.proto -------------------------------------------------------------------------------- /fabric/protos/common/ledger.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/ledger.pb.go -------------------------------------------------------------------------------- /fabric/protos/common/ledger.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/ledger.proto -------------------------------------------------------------------------------- /fabric/protos/common/ledger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/ledger_test.go -------------------------------------------------------------------------------- /fabric/protos/common/policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/policies.go -------------------------------------------------------------------------------- /fabric/protos/common/policies.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/policies.pb.go -------------------------------------------------------------------------------- /fabric/protos/common/policies.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/policies.proto -------------------------------------------------------------------------------- /fabric/protos/common/policies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/policies_test.go -------------------------------------------------------------------------------- /fabric/protos/common/signed_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/signed_data.go -------------------------------------------------------------------------------- /fabric/protos/common/signed_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/common/signed_data_test.go -------------------------------------------------------------------------------- /fabric/protos/gossip/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/gossip/extensions.go -------------------------------------------------------------------------------- /fabric/protos/gossip/extensions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/gossip/extensions_test.go -------------------------------------------------------------------------------- /fabric/protos/gossip/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/gossip/message.pb.go -------------------------------------------------------------------------------- /fabric/protos/gossip/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/gossip/message.proto -------------------------------------------------------------------------------- /fabric/protos/gossip/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/gossip/message_test.go -------------------------------------------------------------------------------- /fabric/protos/ledger/rwset/rwset.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/ledger/rwset/rwset.pb.go -------------------------------------------------------------------------------- /fabric/protos/ledger/rwset/rwset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/ledger/rwset/rwset.proto -------------------------------------------------------------------------------- /fabric/protos/msp/identities.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/identities.pb.go -------------------------------------------------------------------------------- /fabric/protos/msp/identities.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/identities.proto -------------------------------------------------------------------------------- /fabric/protos/msp/msp_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/msp_config.go -------------------------------------------------------------------------------- /fabric/protos/msp/msp_config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/msp_config.pb.go -------------------------------------------------------------------------------- /fabric/protos/msp/msp_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/msp_config.proto -------------------------------------------------------------------------------- /fabric/protos/msp/msp_principal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/msp_principal.go -------------------------------------------------------------------------------- /fabric/protos/msp/msp_principal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/msp_principal.pb.go -------------------------------------------------------------------------------- /fabric/protos/msp/msp_principal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/msp/msp_principal.proto -------------------------------------------------------------------------------- /fabric/protos/orderer/ab.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/orderer/ab.pb.go -------------------------------------------------------------------------------- /fabric/protos/orderer/ab.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/orderer/ab.proto -------------------------------------------------------------------------------- /fabric/protos/orderer/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/orderer/configuration.go -------------------------------------------------------------------------------- /fabric/protos/orderer/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/orderer/configuration.pb.go -------------------------------------------------------------------------------- /fabric/protos/orderer/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/orderer/configuration.proto -------------------------------------------------------------------------------- /fabric/protos/orderer/kafka.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/orderer/kafka.pb.go -------------------------------------------------------------------------------- /fabric/protos/orderer/kafka.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/orderer/kafka.proto -------------------------------------------------------------------------------- /fabric/protos/peer/admin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/admin.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/admin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/admin.proto -------------------------------------------------------------------------------- /fabric/protos/peer/chaincode.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/chaincode.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/chaincode.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/chaincode.proto -------------------------------------------------------------------------------- /fabric/protos/peer/chaincode_event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/chaincode_event.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/chaincode_event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/chaincode_event.proto -------------------------------------------------------------------------------- /fabric/protos/peer/chaincode_shim.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/chaincode_shim.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/chaincode_shim.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/chaincode_shim.proto -------------------------------------------------------------------------------- /fabric/protos/peer/chaincodeunmarshall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/chaincodeunmarshall.go -------------------------------------------------------------------------------- /fabric/protos/peer/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/configuration.go -------------------------------------------------------------------------------- /fabric/protos/peer/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/configuration.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/configuration.proto -------------------------------------------------------------------------------- /fabric/protos/peer/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/events.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/events.proto -------------------------------------------------------------------------------- /fabric/protos/peer/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/init.go -------------------------------------------------------------------------------- /fabric/protos/peer/peer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/peer.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/peer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/peer.proto -------------------------------------------------------------------------------- /fabric/protos/peer/proposal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/proposal.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/proposal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/proposal.proto -------------------------------------------------------------------------------- /fabric/protos/peer/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/query.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/query.proto -------------------------------------------------------------------------------- /fabric/protos/peer/transaction.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/transaction.pb.go -------------------------------------------------------------------------------- /fabric/protos/peer/transaction.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/peer/transaction.proto -------------------------------------------------------------------------------- /fabric/protos/testutils/txtestutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/testutils/txtestutils.go -------------------------------------------------------------------------------- /fabric/protos/utils/blockutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/blockutils.go -------------------------------------------------------------------------------- /fabric/protos/utils/blockutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/blockutils_test.go -------------------------------------------------------------------------------- /fabric/protos/utils/commonutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/commonutils.go -------------------------------------------------------------------------------- /fabric/protos/utils/commonutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/commonutils_test.go -------------------------------------------------------------------------------- /fabric/protos/utils/proputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/proputils.go -------------------------------------------------------------------------------- /fabric/protos/utils/proputils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/proputils_test.go -------------------------------------------------------------------------------- /fabric/protos/utils/txutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/txutils.go -------------------------------------------------------------------------------- /fabric/protos/utils/txutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/protos/utils/txutils_test.go -------------------------------------------------------------------------------- /fabric/release/templates/get-byfn.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release/templates/get-byfn.in -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.0-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.0-beta.md -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.0-rc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.0-rc1.txt -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.0.txt -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.1.txt -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.2.txt -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.3.txt -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.5.txt -------------------------------------------------------------------------------- /fabric/release_notes/v1.0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/release_notes/v1.0.6.txt -------------------------------------------------------------------------------- /fabric/sampleconfig/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/sampleconfig/configtx.yaml -------------------------------------------------------------------------------- /fabric/sampleconfig/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/sampleconfig/core.yaml -------------------------------------------------------------------------------- /fabric/sampleconfig/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/sampleconfig/msp/config.yaml -------------------------------------------------------------------------------- /fabric/sampleconfig/msp/keystore/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/sampleconfig/msp/keystore/key.pem -------------------------------------------------------------------------------- /fabric/sampleconfig/orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/sampleconfig/orderer.yaml -------------------------------------------------------------------------------- /fabric/scripts/bootstrap-1.0.0-alpha2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/bootstrap-1.0.0-alpha2.sh -------------------------------------------------------------------------------- /fabric/scripts/bootstrap-1.0.0-beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/bootstrap-1.0.0-beta.sh -------------------------------------------------------------------------------- /fabric/scripts/bootstrap-1.0.0-rc1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/bootstrap-1.0.0-rc1.sh -------------------------------------------------------------------------------- /fabric/scripts/bootstrap-1.0.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/bootstrap-1.0.0.sh -------------------------------------------------------------------------------- /fabric/scripts/bootstrap-1.0.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/bootstrap-1.0.1.sh -------------------------------------------------------------------------------- /fabric/scripts/bootstrap-1.0.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/bootstrap-1.0.4.sh -------------------------------------------------------------------------------- /fabric/scripts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/bootstrap.sh -------------------------------------------------------------------------------- /fabric/scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/changelog.sh -------------------------------------------------------------------------------- /fabric/scripts/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/check_license.sh -------------------------------------------------------------------------------- /fabric/scripts/check_spelling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/check_spelling.sh -------------------------------------------------------------------------------- /fabric/scripts/compile_protos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/compile_protos.sh -------------------------------------------------------------------------------- /fabric/scripts/containerlogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/containerlogs.sh -------------------------------------------------------------------------------- /fabric/scripts/foldercopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/foldercopy.sh -------------------------------------------------------------------------------- /fabric/scripts/goListFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/goListFiles.sh -------------------------------------------------------------------------------- /fabric/scripts/golinter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/golinter.sh -------------------------------------------------------------------------------- /fabric/scripts/infiniteloop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/infiniteloop.sh -------------------------------------------------------------------------------- /fabric/scripts/install_behave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/scripts/install_behave.sh -------------------------------------------------------------------------------- /fabric/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/settings.gradle -------------------------------------------------------------------------------- /fabric/test/chaincodes/AuctionApp/art.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/chaincodes/AuctionApp/art.go -------------------------------------------------------------------------------- /fabric/test/chaincodes/BadImport/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/chaincodes/BadImport/main.go -------------------------------------------------------------------------------- /fabric/test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/docker-compose.yml -------------------------------------------------------------------------------- /fabric/test/envsetup/channel-artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/test/envsetup/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/envsetup/docker-compose.yaml -------------------------------------------------------------------------------- /fabric/test/envsetup/generateCfgTrx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/envsetup/generateCfgTrx.sh -------------------------------------------------------------------------------- /fabric/test/feature/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/README.rst -------------------------------------------------------------------------------- /fabric/test/feature/bootstrap.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/bootstrap.feature -------------------------------------------------------------------------------- /fabric/test/feature/configs/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/configs/configtx.yaml -------------------------------------------------------------------------------- /fabric/test/feature/configs/crypto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/configs/crypto.yaml -------------------------------------------------------------------------------- /fabric/test/feature/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/environment.py -------------------------------------------------------------------------------- /fabric/test/feature/orderer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/orderer.feature -------------------------------------------------------------------------------- /fabric/test/feature/peer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/peer.feature -------------------------------------------------------------------------------- /fabric/test/feature/steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/steps/__init__.py -------------------------------------------------------------------------------- /fabric/test/feature/steps/basic_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/steps/basic_impl.py -------------------------------------------------------------------------------- /fabric/test/feature/steps/compose_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/steps/compose_util.py -------------------------------------------------------------------------------- /fabric/test/feature/steps/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/steps/config_util.py -------------------------------------------------------------------------------- /fabric/test/feature/steps/orderer_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/steps/orderer_impl.py -------------------------------------------------------------------------------- /fabric/test/feature/steps/orderer_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/feature/steps/orderer_util.py -------------------------------------------------------------------------------- /fabric/test/regression/daily/Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/regression/daily/Example.py -------------------------------------------------------------------------------- /fabric/test/regression/daily/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/regression/daily/README.md -------------------------------------------------------------------------------- /fabric/test/regression/daily/chaincodeTests/envsetup/channel-artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/test/regression/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/regression/release/README.md -------------------------------------------------------------------------------- /fabric/test/regression/weekly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/regression/weekly/README.md -------------------------------------------------------------------------------- /fabric/test/tools/LTE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/LTE/README.md -------------------------------------------------------------------------------- /fabric/test/tools/LTE/chainmgmt/chains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/LTE/chainmgmt/chains.go -------------------------------------------------------------------------------- /fabric/test/tools/LTE/chainmgmt/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/LTE/chainmgmt/conf.go -------------------------------------------------------------------------------- /fabric/test/tools/LTE/common/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/LTE/common/util.go -------------------------------------------------------------------------------- /fabric/test/tools/LTE/experiments/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/LTE/experiments/conf.go -------------------------------------------------------------------------------- /fabric/test/tools/LTE/experiments/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/LTE/experiments/util.go -------------------------------------------------------------------------------- /fabric/test/tools/LTE/scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/LTE/scripts/common.sh -------------------------------------------------------------------------------- /fabric/test/tools/OTE/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/OTE/README.rst -------------------------------------------------------------------------------- /fabric/test/tools/PTE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/PTE/README.md -------------------------------------------------------------------------------- /fabric/test/tools/PTE/chaincode_sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/PTE/chaincode_sample.go -------------------------------------------------------------------------------- /fabric/test/tools/PTE/pte-execRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/PTE/pte-execRequest.js -------------------------------------------------------------------------------- /fabric/test/tools/PTE/pte-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/PTE/pte-main.js -------------------------------------------------------------------------------- /fabric/test/tools/PTE/pte-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/PTE/pte-util.js -------------------------------------------------------------------------------- /fabric/test/tools/PTE/pte_driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/test/tools/PTE/pte_driver.sh -------------------------------------------------------------------------------- /fabric/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/tox.ini -------------------------------------------------------------------------------- /fabric/unit-test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/unit-test/docker-compose.yml -------------------------------------------------------------------------------- /fabric/unit-test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/unit-test/run.sh -------------------------------------------------------------------------------- /fabric/vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /fabric/vendor/github.com/docker/docker/pkg/chrootarchive/init_windows.go: -------------------------------------------------------------------------------- 1 | package chrootarchive 2 | 3 | func init() { 4 | } 5 | -------------------------------------------------------------------------------- /fabric/vendor/github.com/docker/docker/pkg/testutil/pkg.go: -------------------------------------------------------------------------------- 1 | package testutil 2 | -------------------------------------------------------------------------------- /fabric/vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /fabric/vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /fabric/vendor/github.com/miekg/pkcs11/softhsm.conf: -------------------------------------------------------------------------------- 1 | 0:hsm.db 2 | -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /fabric/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /fabric/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /fabric/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /fabric/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /fabric/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /fabric/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeaR7/Asset-Manager/HEAD/fabric/vendor/vendor.json --------------------------------------------------------------------------------