Faye Amacker

Results 59 issues of Faye Amacker

Atree `OrderedMap` stores element's key and value together to reduce number of touched slabs for write ops. However, this can be inefficient for map key iteration since both keys and...

enhancement
Execution

Return value of `Type.String()` for function type doesn't match equivalent call using Go's `reflect` package. The code snippet below produces: - tinygo: `func` - go1.22: `func(int, string) (bool, error)` ```Go...

bug
reflection

Changes to CDDL notation and other comments include: - Fix entitlement CCF CDDL - Remove deprecated path-capability CCF CDDL - Update inclusiverange-value CCF CDDL - and other minor improvements The...

Documentation

## Why We can reduce memory, storage use, etc. by combining non-atree domain registers into 1 atree payload per account. We can further reduce execution state size by using atree...

Improvement
Cadence Execution Team

## 🐞 Bug Report The `break` appears to be intended to stop continuous delivery mode but the `break` is a no-op due to its location. https://github.com/onflow/flow-go/blob/2f7d0dfc4a6b9a072f09a07ca0be631194a15d2b/network/stub/network.go#L275-L287 Replacing `break` with `return`...

good first issue
Stale

Closes #539 Currently, atree is using a feature branch of [fxamacker/cbor](https://github.com/fxamacker/cbor) that was based on cbor v2.4.0. This commit bumps version of `fxamacker/cbor` to use the updated `feature/stream-mode` branch based...

improvement

Currently, [fxamacker/cbor](https://github.com/fxamacker/cbor/)'s `feature/stream-mode` branch is still based on v2.4. After updating fxamacker'cbor's `feature/stream-mode` branch to be based on v2.7, I will update atree to use it. This requires fuzz testing...

enhancement

Obsoletes #291 Rather than migrating the old `feature/stream-mode` API into main branch, I will be implementing a new streaming API with a more user-friendly API and modern implementation. Currently, this...

enhancement
performance
TinyGo
streaming API

Updates #7242 Currently, some memory caches that use concatenated IDs, etc., as keys can contain items that were already deleted from the database. This problem is fixed in other memory...

Bugfix
Performance