We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There should be a simple way of fetching by key from the ACS. This information is part of CreateEvent (https://github.com/digital-asset/daml/blob/bb111ea3cc5a649b6ce005aa315ca7d4b62bcf6c/ledger-api/grpc-definitions/com/daml/ledger/api/v1/event.proto#L54), so it could trivially be captured and used as a key for subsequent lookups in dazl's ACS cache.
CreateEvent
One issue that would need to be solved is how to stably use nested structures as keys, as Python dicts are not hashable by default.
dict
hash
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There should be a simple way of fetching by key from the ACS. This information is part of
CreateEvent
(https://github.com/digital-asset/daml/blob/bb111ea3cc5a649b6ce005aa315ca7d4b62bcf6c/ledger-api/grpc-definitions/com/daml/ledger/api/v1/event.proto#L54), so it could trivially be captured and used as a key for subsequent lookups in dazl's ACS cache.One issue that would need to be solved is how to stably use nested structures as keys, as Python
dict
s are nothash
able by default.The text was updated successfully, but these errors were encountered: