CCF icon indicating copy to clipboard operation
CCF copied to clipboard

Confidential Consortium Framework

Results 300 CCF issues
Sort by recently updated
recently updated
newest added

Following up discussion in #6968, I noticed a surprising duplication of ledger files: > they create another copy of the ledger in their `.current` directories, even though they already have...

We currently have per-node chunking decisions, based on `chunk_size` options on the host configuration. This is dangerous - if it mismatches on different nodes, we'll get different chunks, breaking simple...

As a follow-up to #6831, we should strengthen our confidence in SNP endorsement fetching by replacing the current HTTP client with `libcurl`. The current client was written for SGX, so...

We currently have two separate log level settings, which remain from the SGX days: 1. Host log level, set in configuration (`logging.host_level`): https://microsoft.github.io/CCF/main/operations/generated_config.html#logging 2. Enclave log level, set via CLI...

SNP attestation reports are checked by [verify_snp_attestation_report](url) but only validates that the TCB in the attestation report matches that in the endorsed_tcb field in the quote. The 'correct' fix will...

This was required on SGX, but not any longer. By removing this extra serialisation, we can pass richer types, and remove a large collection of unused `DECLARE_JSON_TYPE` definitions.

Surprised to discover that this `if (NOT TSAN)` block gates so many tests. Believe many should now work - let's see what the CI says.

run-long-test

At present after a DR the pre-DR nodes get reported as `Retired` in the `node/network/nodes` but they don't how up in `node/network/removable_nodes`. If we can have the nodes listed in...

_Originally posted by @achamayou in https://github.com/microsoft/CCF/pull/6746#discussion_r1913032022_

It should be possible to call a URL like: ``` GET /foo?bar%26baz=tom%26jerry ``` With the desired result being that the application gets a query-parameter with name `bar&baz` and value `tom&jerry`....