distributed-ledger
Here are 192 public repositories matching this topic...
Currently there seem to be 3 options for testing Corda:
- MockNetwork
- Driver DSL
- Manually start a network then run tests
The MockNetwork is useful for testing flows but it doesn't implement an RPC interface so you can't use it in your Spring REST API tests.
The Driver DSL has an RPC interface but all the work appears to have to be done in the dsl closure which means you can't get
-
Updated
Aug 4, 2021
-
Updated
Mar 8, 2020 - JavaScript
-
Updated
Oct 4, 2021 - Python
-
Updated
Sep 14, 2021 - JavaScript
-
Updated
Sep 18, 2021 - Java
-
Updated
Apr 16, 2019 - C++
-
Updated
Oct 13, 2021 - Go
-
Updated
Oct 9, 2021 - Go
-
Updated
Oct 12, 2021 - Python
The problem is that buffer array seems to have a different prototype than js definition and when convertBytetoString is called then:
for (const index in buffer_array) {
will start iterating over the prototype properties and result is incorrectly set to be a string of the function definitions instead of being empty string.
Could be fixed by adding a guard:
for (const index in buffer_array
There's a bunch of back-and-forth between domain.Offset and String in AcsTxStreams and [ContractsFetch](https://github.com/digital-asset/daml/blob/9fd8182bbb6c7ee85b65a7edbeba68ca5ac9b901/ledger-service/http-json/src/main/scala/c
-
Updated
Oct 13, 2021 - TeX
-
Updated
Sep 30, 2021 - Go
-
Updated
Sep 27, 2021 - Go
-
Updated
Sep 15, 2021 - Java
-
Updated
Aug 21, 2021 - Python
It would be handy for longevity stand to have export of logs into some file which can be structurally filtered. Bunyan format fits for that case:
https://crates.io/crates/tracing-bunyan-formatter
As an enhancement it would great to limit file size somehow and let new logs overwrite old ones.
-
Updated
Aug 30, 2019 - JavaScript
-
Updated
Apr 29, 2021 - C++
-
Updated
Oct 8, 2021 - Python
-
Updated
Sep 1, 2021 - C++
-
Updated
Oct 13, 2021 - TypeScript
-
Updated
May 19, 2021 - Java
-
Updated
Sep 27, 2021 - JavaScript
-
Updated
Jul 21, 2020 - Java
-
Updated
Aug 30, 2019 - JavaScript
-
Updated
Oct 13, 2021 - C#
-
Updated
Feb 8, 2021 - Clojure
Improve this page
Add a description, image, and links to the distributed-ledger topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the distributed-ledger topic, visit your repo's landing page and select "manage topics."
When installing a new chaincode on the peer you do get the package id of the chaincode which is good... this allows customers to use that data to go through the approve/commit steps.
However the issue is when they are reinstalling an existing chaincode there is nothing in the response to indicate the package id(hash). Install in that case returns a message that the chaincode already exists. We