Mark S. Lewis

Results 98 comments of Mark S. Lewis

The _qscc_ chaincode already offers a **GetTransactionByID** transaction function that does not block waiting for a commit, but could be polled until a transaction is committed, so that capability may...

@tskvivekmani One other option for you, if you are checking for a transaction you submit and using the finer-grained transaction flow, is to keep hold of the Commit object you...

You are correct that the serialized Commit object does not store the transaction result. Neither does the serialized Proposal object. You do see the transaction result on the Transaction object...

I wonder if this is related to #4146? Comments further down that issues suggested it was solved by changing the config file location.

Unfortunately issue of type compatibility with the gRPC Client object was triggered by a combination of (private) internal changes to the gRPC library between point releases, and the way TypeScript...

@hyperledger/fabric-samples-maintainers I believe this issue is now resolved by a combination of the [v1.2.1](https://github.com/hyperledger/fabric-gateway/releases/tag/v1.2.1) release of `@hyperledger/fabric-gateway` and PR #927, and can be closed.

I can confirm a similar error. I modified the [asset-transfer-basic](https://github.com/hyperledger/fabric-samples/tree/main/asset-transfer-basic/chaincode-go) sample chaincode so that `GetAllAssets` return `data.Asset` while `ReadAsset` continued to return `Asset`. `data.Asset` was identical to `Asset`, _except_ that...

I prototyped a fix in pull request #118. It fails the contract metadata tests from the Fabric integration tests in [fabric-test](https://github.com/hyperledger/fabric-test). I am not sure whether the change to the...

This pull request has been open for a long time without any updates to move it towards a successful change, so I am closing.

Based on the suggestion by @h4sh5 above, my current work-around is to run something like this: ```bash mvn help:effective-pom -Doutput="${TMPDIR}/pom.xml" osv-scanner --lockfile="${TMPDIR}/pom.xml" ``` **Edit**: I found this was not really...