Skip to content

Commit be9d1d6

Browse files
Split store, store services and services
Signed-off-by: Alexandros Filios <[email protected]>
1 parent 5aed995 commit be9d1d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

token/services/network/fabric/lookup/deliveryllm.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313

1414
vault2 "github.com/hyperledger-labs/fabric-smart-client/platform/common/core/generic/vault"
1515
driver2 "github.com/hyperledger-labs/fabric-smart-client/platform/common/driver"
16+
logging2 "github.com/hyperledger-labs/fabric-smart-client/platform/common/services/logging"
1617
"github.com/hyperledger-labs/fabric-smart-client/platform/common/utils/collections"
1718
"github.com/hyperledger-labs/fabric-smart-client/platform/fabric"
1819
"github.com/hyperledger-labs/fabric-smart-client/platform/fabric/core/generic/committer"
@@ -206,7 +207,7 @@ func (m *endorserTxInfoMapper) mapTxInfo(rwSet vault2.ReadWriteSet, txID string)
206207
txInfos := make(map[driver2.Namespace]KeyInfo, len(rwSet.WriteSet.Writes))
207208
logger.Debugf("TX [%s] has %d namespaces", txID, len(rwSet.WriteSet.Writes))
208209
for ns, writes := range rwSet.WriteSet.Writes {
209-
logger.Debugf("TX [%s:%s] has [%d] writes", txID, ns, len(writes))
210+
logger.Debugf("TX [%s:%s] has [%d] writes: %v", txID, ns, len(writes), logging2.Keys(writes))
210211
for key, value := range writes {
211212
if slices.ContainsFunc(m.prefixes, func(prefix string) bool { return strings.HasPrefix(key, prefix) }) {
212213
logger.Debugf("TX [%s:%s] does have key [%s].", txID, ns, key)

0 commit comments

Comments
 (0)