Repository Analysis

hyperledger/fabric

Hyperledger Fabric is an enterprise-grade permissioned distributed ledger framework for developing solutions and applications. Its modular and versatile design satisfies a broad range of industry use cases. It offers a unique approach to consensus that enables performance at scale while preserving privacy.

2.8 Likely human-written View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of hyperledger/fabric, a Go project with 16,682 GitHub stars. SynthScan v2.0 examined 489,023 lines of code across 1983 source files, recording 817 pattern matches distributed across 9 syntactic categories. The overall adjusted score of 2.8 places this repository in the Likely human-written band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

2.8
Adjusted Score
2.8
Raw Score
100%
Time Factor
2026-07-02
Last Push
16.7K
Stars
Go
Language
489.0K
Lines of Code
2.0K
Files
817
Pattern Hits
2026-07-14
Scan Date
0.00
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 0HIGH 1MEDIUM 106LOW 710

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 817 distinct pattern matches across 9 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Fake / Example Data310 hits · 571 pts
SeverityFileLineSnippetContext
LOWcmd/osnadmin/osnadmin_suite_test.go18//go:generate counterfeiter -o mocks/channel_management.go -fake-name ChannelManagement . channelManagementCOMMENT
LOWcore/middleware/middleware_suite_test.go22//go:generate counterfeiter -o fakes/http_handler.go --fake-name HTTPHandler . httpHandlerCOMMENT
LOWcore/endorser/endorser.go37//go:generate counterfeiter -o fake/prvt_data_distributor.go --fake-name PrivateDataDistributor . PrivateDataDistributorCOMMENT
LOWcore/endorser/endorser.go85//go:generate counterfeiter -o fake/channel_fetcher.go --fake-name ChannelFetcher . ChannelFetcherCOMMENT
LOWcore/endorser/plugin_endorser_test.go31//go:generate counterfeiter -o fake/query_executor.go -fake-name QueryExecutor . queryExecutorCOMMENT
LOWcore/endorser/endorser_suite_test.go20//go:generate counterfeiter -o fake/support.go --fake-name Support . endorserSupportCOMMENT
LOWcore/endorser/endorser_suite_test.go25//go:generate counterfeiter -o fake/id_deserializer.go --fake-name IdentityDeserializer . identityDeserializerCOMMENT
LOWcore/endorser/endorser_suite_test.go30//go:generate counterfeiter -o fake/identity.go --fake-name Identity . identityCOMMENT
LOWcore/endorser/endorser_suite_test.go35//go:generate counterfeiter -o fake/tx_simulator.go --fake-name TxSimulator . txSimulatorCOMMENT
LOWcore/endorser/endorser_suite_test.go40//go:generate counterfeiter -o fake/history_query_executor.go --fake-name HistoryQueryExecutor . historyQueryExecutorCOMMENT
LOWcore/ledger/ledger_interface.go831//go:generate counterfeiter -o mock/state_listener.go -fake-name StateListener . StateListenerCOMMENT
LOWcore/ledger/ledger_interface.go832//go:generate counterfeiter -o mock/query_executor.go -fake-name QueryExecutor . QueryExecutorCOMMENT
LOWcore/ledger/ledger_interface.go833//go:generate counterfeiter -o mock/tx_simulator.go -fake-name TxSimulator . TxSimulatorCOMMENT
LOWcore/ledger/ledger_interface.go834//go:generate counterfeiter -o mock/deployed_ccinfo_provider.go -fake-name DeployedChaincodeInfoProvider . DeployedChainCOMMENT
LOWcore/ledger/ledger_interface.go835//go:generate counterfeiter -o mock/membership_info_provider.go -fake-name MembershipInfoProvider . MembershipInfoProvidCOMMENT
LOWcore/ledger/ledger_interface.go836//go:generate counterfeiter -o mock/health_check_registry.go -fake-name HealthCheckRegistry . HealthCheckRegistryCOMMENT
LOWcore/ledger/ledger_interface.go837//go:generate counterfeiter -o mock/cc_event_listener.go -fake-name ChaincodeLifecycleEventListener . ChaincodeLifecycleCOMMENT
LOWcore/ledger/ledger_interface.go838//go:generate counterfeiter -o mock/custom_tx_processor.go -fake-name CustomTxProcessor . CustomTxProcessorCOMMENT
LOWcore/ledger/ledger_interface.go839//go:generate counterfeiter -o mock/cc_event_provider.go -fake-name ChaincodeLifecycleEventProvider . ChaincodeLifecycleCOMMENT
LOWcore/ledger/pvtdatapolicy/btlpolicy.go97//go:generate counterfeiter -o mock/coll_info_provider.go -fake-name CollectionInfoProvider . collectionInfoProviderCOMMENT
LOWcore/ledger/snapshotgrpc/snapshot_service_test.go24//go:generate counterfeiter -o mock/ledger_getter.go -fake-name LedgerGetter . ledgerGetterCOMMENT
LOWcore/ledger/snapshotgrpc/snapshot_service_test.go25//go:generate counterfeiter -o mock/acl_provider.go -fake-name ACLProvider . aclProviderCOMMENT
LOWcore/ledger/kvledger/tests/util.go42//go:generate counterfeiter -o fakes/signer.go --fake-name Signer . signerCOMMENT
LOW…/ledger/kvledger/txmgmt/privacyenabledstate/db_test.go647//go:generate counterfeiter -o mock/channelinfo_provider.go -fake-name ChannelInfoProvider . channelInfoProviderCOMMENT
LOW…r/kvledger/txmgmt/privacyenabledstate/snapshot_test.go690//go:generate counterfeiter -o mock/snapshot_pvtdatahashes_consumer.go -fake-name SnapshotPvtdataHashesConsumer . snapshCOMMENT
LOWcore/ledger/kvledger/txmgmt/statedb/statedb.go16//go:generate counterfeiter -o mock/results_iterator.go -fake-name ResultsIterator . ResultsIteratorCOMMENT
LOWcore/ledger/kvledger/txmgmt/statedb/statedb.go17//go:generate counterfeiter -o mock/versioned_db.go -fake-name VersionedDB . VersionedDBCOMMENT
LOWcore/ledger/kvledger/txmgmt/statedb/statedb.go18//go:generate counterfeiter -o mock/namespace_provider.go -fake-name NamespaceProvider . NamespaceProviderCOMMENT
LOW…r/kvledger/txmgmt/queryutil/query_executer_combiner.go20//go:generate counterfeiter -o mock/query_executer.go -fake-name QueryExecuter . QueryExecuterCOMMENT
LOW…dger/kvledger/txmgmt/validation/batch_preparer_test.go575//go:generate counterfeiter -o mock/txsim.go --fake-name TxSimulator . txSimulatorCOMMENT
LOW…dger/kvledger/txmgmt/validation/batch_preparer_test.go580//go:generate counterfeiter -o mock/processor.go --fake-name Processor . processorCOMMENT
LOW…dger/kvledger/txmgmt/validation/batch_preparer_test.go585//go:generate counterfeiter -o mock/postOrderSimulatorProvider.go --fake-name PostOrderSimulatorProvider . postOrderSimuCOMMENT
LOWcore/deliverservice/deliveryclient_test.go30//go:generate counterfeiter -o fake/ledger_info.go --fake-name LedgerInfo . ledgerInfoCOMMENT
LOWcore/deliverservice/gossip_block_handler.go20//go:generate counterfeiter -o fake/gossip_service_adapter.go --fake-name GossipServiceAdapter . GossipServiceAdapterCOMMENT
LOWcore/dispatcher/dispatcher_suite_test.go17//go:generate counterfeiter -o mock/protobuf.go --fake-name Protobuf . protobufCOMMENT
LOWcore/peer/deliverevents_test.go46//go:generate counterfeiter -o mock/peer_ledger.go -fake-name PeerLedger . peerLedgerCOMMENT
LOWcore/peer/deliverevents_test.go52//go:generate counterfeiter -o mock/identity_deserializer_manager.go -fake-name IdentityDeserializerManager . identityDeCOMMENT
LOWcore/peer/deliverevents_test.go58//go:generate counterfeiter -o mock/collection_policy_checker.go -fake-name CollectionPolicyChecker . collectionPolicyChCOMMENT
LOWcore/operations/operations_suite_test.go77//go:generate counterfeiter -o fakes/healthchecker.go -fake-name HealthChecker . healthCheckerCOMMENT
LOWcore/operations/system.go29//go:generate counterfeiter -o fakes/logger.go -fake-name Logger . LoggerCOMMENT
LOWcore/chaincode/chaincode_suite_test.go28//go:generate counterfeiter -o mock/tx_simulator.go --fake-name TxSimulator . txSimulatorCOMMENT
LOWcore/chaincode/chaincode_suite_test.go33//go:generate counterfeiter -o mock/history_query_executor.go --fake-name HistoryQueryExecutor . historyQueryExecutorCOMMENT
LOWcore/chaincode/chaincode_suite_test.go38//go:generate counterfeiter -o mock/results_iterator.go --fake-name QueryResultsIterator . queryResultsIteratorCOMMENT
LOWcore/chaincode/chaincode_suite_test.go43//go:generate counterfeiter -o mock/runtime.go --fake-name Runtime . chaincodeRuntimeCOMMENT
LOWcore/chaincode/chaincode_suite_test.go48//go:generate counterfeiter -o mock/cert_generator.go --fake-name CertGenerator . certGeneratorCOMMENT
LOWcore/chaincode/chaincode_suite_test.go53//go:generate counterfeiter -o mock/container_router.go --fake-name ContainerRouter . containerRouterCOMMENT
LOWcore/chaincode/chaincode_suite_test.go58//go:generate counterfeiter -o mock/invoker.go --fake-name Invoker . invokerCOMMENT
LOWcore/chaincode/chaincode_suite_test.go63//go:generate counterfeiter -o mock/lifecycle.go --fake-name Lifecycle . lifecycle_COMMENT
LOWcore/chaincode/chaincode_suite_test.go68//go:generate counterfeiter -o mock/chaincode_stream.go --fake-name ChaincodeStream . chaincodeStreamCOMMENT
LOWcore/chaincode/chaincode_suite_test.go73//go:generate counterfeiter -o mock/transaction_registry.go --fake-name TransactionRegistry . transactionRegistryCOMMENT
LOWcore/chaincode/chaincode_suite_test.go78//go:generate counterfeiter -o mock/acl_provider.go --fake-name ACLProvider . aclProviderCOMMENT
LOWcore/chaincode/chaincode_suite_test.go83//go:generate counterfeiter -o mock/ledger_getter.go --fake-name LedgerGetter . ledgerGetterCOMMENT
LOWcore/chaincode/chaincode_suite_test.go88//go:generate counterfeiter -o mock/peer_ledger.go --fake-name PeerLedger . peerLedgerCOMMENT
LOWcore/chaincode/chaincode_suite_test.go95//go:generate counterfeiter -o fake/launch_registry.go --fake-name LaunchRegistry . launchRegistryCOMMENT
LOWcore/chaincode/chaincode_suite_test.go100//go:generate counterfeiter -o fake/message_handler.go --fake-name MessageHandler . messageHandlerCOMMENT
LOWcore/chaincode/chaincode_suite_test.go105//go:generate counterfeiter -o fake/context_registry.go --fake-name ContextRegistry . contextRegistryCOMMENT
LOWcore/chaincode/chaincode_suite_test.go110//go:generate counterfeiter -o fake/query_response_builder.go --fake-name QueryResponseBuilder . queryResponseBuilderCOMMENT
LOWcore/chaincode/chaincode_suite_test.go115//go:generate counterfeiter -o fake/registry.go --fake-name Registry . registryCOMMENT
LOWcore/chaincode/chaincode_suite_test.go120//go:generate counterfeiter -o fake/application_config_retriever.go --fake-name ApplicationConfigRetriever . applicationCOMMENT
LOWcore/chaincode/chaincode_suite_test.go125//go:generate counterfeiter -o mock/collection_store.go --fake-name CollectionStore . collectionStoreCOMMENT
250 more matches not shown…
Decorative Section Separators90 hits · 377 pts
SeverityFileLineSnippetContext
MEDIUMcmd/cryptogen/main.go88# ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go90# ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go92 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go94 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go99 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go101 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go105# ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go107# ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go109 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go111 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go116 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go118 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go121 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go182 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go191 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go193 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go196 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go201 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go203 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go132 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go134 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go156 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go169 # ---------------------------------------------------------------------------COMMENT
MEDIUMcmd/cryptogen/main.go171 # ---------------------------------------------------------------------------COMMENT
MEDIUMvagrant/golang.sh10# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/golang.sh12# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/golang.sh17# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/golang.sh19# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/softhsm.sh9# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/softhsm.sh11# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/softhsm.sh14# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/softhsm.sh16# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/softhsm.sh20# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/softhsm.sh22# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/user.sh7# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/user.sh9# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/limits.sh7# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/limits.sh9# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/essentials.sh9# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/essentials.sh11# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/essentials.sh14# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/essentials.sh16# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/docker.sh9# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/docker.sh11# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/docker.sh15# ----------------------------------------------------------------COMMENT
MEDIUMvagrant/docker.sh17# ----------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml6# ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml8# ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml10 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml12 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml15 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml17 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml21# ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml23# ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml25 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml27 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml31 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml33 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml46 # ---------------------------------------------------------------------------COMMENT
MEDIUMdiscovery/test/testdata/crypto-config.yaml52 # ---------------------------------------------------------------------------COMMENT
30 more matches not shown…
Over-Commented Block395 hits · 373 pts
SeverityFileLineSnippetContext
LOW.readthedocs.yaml21 configuration: docs/source/conf.pyCOMMENT
LOWcmd/cryptogen/main.go101 # ---------------------------------------------------------------------------COMMENT
LOWcmd/cryptogen/main.go121 # ---------------------------------------------------------------------------COMMENT
LOWcmd/cryptogen/main.go141 # the CN. By default, this is the template:COMMENT
LOWcmd/cryptogen/main.go161 # - "bar.{{.Domain}}"COMMENT
LOWcmd/cryptogen/main.go181 # name collisionsCOMMENT
LOWsampleconfig/configtx.yaml1# Copyright IBM Corp. All Rights Reserved.COMMENT
LOWsampleconfig/configtx.yaml21# in the configuration profiles.COMMENT
LOWsampleconfig/configtx.yaml81# concept as of v1.1.0 and should not be utilized in mixed networks withCOMMENT
LOWsampleconfig/configtx.yaml101 # determined to be desired for all orderers and peers running at the v3.0.0COMMENT
LOWsampleconfig/configtx.yaml121 # Set the value of the capability to true to require it.COMMENT
LOWsampleconfig/configtx.yaml141 # (e.g., "GetBlockByNumber" on the "qscc" system chaincode) or other resourcesCOMMENT
LOWsampleconfig/configtx.yaml241 # Capabilities describes the application level capabilities, see theCOMMENT
LOWsampleconfig/configtx.yaml261 # Addresses used to be the list of orderer addresses that clients and peersCOMMENT
LOWsampleconfig/configtx.yaml281 MaxMessageCount: 500COMMENT
LOWsampleconfig/configtx.yaml421################################################################################COMMENT
LOWsampleconfig/configtx.yaml441 Rule: "ANY Writers"COMMENT
LOWsampleconfig/core.yaml1# Copyright IBM Corp. All Rights Reserved.COMMENT
LOWsampleconfig/core.yaml21 # By default, it will listen on all network interfacesCOMMENT
LOWsampleconfig/core.yaml41 address: 0.0.0.0:7051COMMENT
LOWsampleconfig/core.yaml61COMMENT
LOWsampleconfig/core.yaml81 # peer nodes before closing the connectionCOMMENT
LOWsampleconfig/core.yaml101 bootstrap: 127.0.0.1:7051COMMENT
LOWsampleconfig/core.yaml141 # Determines frequency of pull phases(unit: second)COMMENT
LOWsampleconfig/core.yaml161 recvBuffSize: 20COMMENT
LOWsampleconfig/core.yaml201 # transientstoreMaxBlockRetention defines the maximum difference between the current ledger's height upon commit,COMMENT
LOWsampleconfig/core.yaml221 # of the next reconciliation iteration.COMMENT
LOWsampleconfig/core.yaml241COMMENT
LOWsampleconfig/core.yaml261 # batchSize the number of blocks to request via state transfer from another peerCOMMENT
LOWsampleconfig/core.yaml281 cert:COMMENT
LOWsampleconfig/core.yaml301 clientKey:COMMENT
LOWsampleconfig/core.yaml361 # to match the name of one of the MSPs in each of the channelCOMMENT
LOWsampleconfig/core.yaml401 # to:COMMENT
LOWsampleconfig/core.yaml421COMMENT
LOWsampleconfig/core.yaml461 validators:COMMENT
LOWsampleconfig/core.yaml481 authCacheEnabled: trueCOMMENT
LOWsampleconfig/core.yaml501 # gatewayService limits concurrent requests to gateway service that handles the submission and evaluation of transCOMMENT
LOWsampleconfig/core.yaml541 # Container may be efficiently created using ipam & dns-server for clusterCOMMENT
LOWsampleconfig/core.yaml561COMMENT
LOWsampleconfig/core.yaml621 # to come through.COMMENT
LOWsampleconfig/core.yaml661COMMENT
LOWsampleconfig/core.yaml681 blockchain:COMMENT
LOWsampleconfig/core.yaml701 # to prevent unintended users from discovering the password.COMMENT
LOWsampleconfig/core.yaml721 createGlobalChangesDB: falseCOMMENT
LOWsampleconfig/core.yaml741 collElgProcDbBatchesInterval: 1000COMMENT
LOWsampleconfig/core.yaml761 # The path must be an absolute path.COMMENT
LOWsampleconfig/orderer.yaml1# Copyright IBM Corp. All Rights Reserved.COMMENT
LOWsampleconfig/orderer.yaml21 # TLS: TLS settings for the GRPC server.COMMENT
LOWsampleconfig/orderer.yaml41 ClientRootCAs:COMMENT
LOWsampleconfig/orderer.yaml61 MaxDelay: 2mCOMMENT
LOWsampleconfig/orderer.yaml81 # InactivityTimeout defines the time frame after whichCOMMENT
LOWsampleconfig/orderer.yaml101COMMENT
LOWsampleconfig/orderer.yaml121 # in etcdraft: ignored, (always "simple", regardless of value in config).COMMENT
LOWsampleconfig/orderer.yaml141 # https://golang.org/pkg/net/http/pprofCOMMENT
LOWsampleconfig/orderer.yaml181 # Authentication contains configuration parameters related to authenticatingCOMMENT
LOWsampleconfig/orderer.yaml201# Debug ConfigurationCOMMENT
LOWsampleconfig/orderer.yaml241COMMENT
LOWsampleconfig/orderer.yaml261 # the statsd server addressCOMMENT
LOWsampleconfig/orderer.yaml301 # Paths to PEM encoded ca certificates to trust for client authenticationCOMMENT
LOWsampleconfig/orderer.yaml321#COMMENT
335 more matches not shown…
AI Slop Vocabulary12 hits · 36 pts
SeverityFileLineSnippetContext
MEDIUMsampleconfig/configtx.yaml531 # member. It is designed to be used in conjunction with SampleSingleMSPSoloCOMMENT
MEDIUMsampleconfig/core.yaml521 # If you utilize external chaincode builders and don't need the default Docker chaincode builder,COMMENT
MEDIUMsampleconfig/msp/config.yaml12 # For each identity classification that you would like to utilize, specifyCOMMENT
MEDIUMcore/endorser/endorser.go609// ~~TODO utilize a common shorttxid utility across packages.~~COMMENT
MEDIUMcore/ledger/kvledger/txmgmt/privacyenabledstate/db.go271// penalty if they do not use features that leverage metadata (such as key-level endorsement),COMMENT
MEDIUMcore/ledger/pvtdatastorage/retroactive_hashed_index.go91 // Here we leverage this opportunity (when we create HashedIndexKeys retroactively) to convertCOMMENT
MEDIUMcore/deliverservice/testdata/core.yaml514 # If you utilize external chaincode builders and don't need the default Docker chaincode builder,COMMENT
MEDIUMcore/peer/config.go12// variables. This seems to be the most robust way to represent theseCOMMENT
MEDIUMinternal/peer/node/start.go1098// computeChaincodeEndpoint will utilize chaincode address, chaincode listenCOMMENT
MEDIUM…ommon/cluster/testdata/blockverification/configtx.yaml547 # member. It is designed to be used in conjunction with SampleSingleMSPSoloCOMMENT
MEDIUM…er/common/cluster/testdata/blockverification/core.yaml521 # If you utilize external chaincode builders and don't need the default Docker chaincode builder,COMMENT
MEDIUM…mon/cluster/testdata/blockverification/msp/config.yaml9 # For each identity classification that you would like to utilize, specifyCOMMENT
Self-Referential Comments3 hits · 9 pts
SeverityFileLineSnippetContext
MEDIUMsampleconfig/core.yaml718 # Create the _global_changes system databaseCOMMENT
MEDIUMcore/deliverservice/testdata/core.yaml702 # Create the _global_changes system databaseCOMMENT
MEDIUM…er/common/cluster/testdata/blockverification/core.yaml709 # Create the _global_changes system databaseCOMMENT
AI Response Leakage1 hit · 8 pts
SeverityFileLineSnippetContext
HIGHcore/ledger/confighistory/mgr.go73// In this implementation, the latest collection config package is retrieved viaCOMMENT
Structural Annotation Overuse3 hits · 4 pts
SeverityFileLineSnippetContext
LOWdocs/source/config_update.md958### Step 1: Pull and translate the configCOMMENT
LOWdocs/source/config_update.md988### Step 2: Modify the configCOMMENT
LOWdocs/source/config_update.md999### Step 3: Re-encode and submit the configCOMMENT
TODO Padding2 hits · 3 pts
SeverityFileLineSnippetContext
LOWcore/committer/txvalidator/v14/validator.go111 // TODO: implement this function!COMMENT
LOWcore/committer/txvalidator/v20/validator.go156 // TODO: implement this function!COMMENT
Modern AI Meta-Vocabulary1 hit · 2 pts
SeverityFileLineSnippetContext
MEDIUMdocs/source/style-guides/go-style.md37When it’s desired to maintain loose coupling, we encourage explicit dependency injection - i.e., pass instances of depenCODE