Fabrice Drouin
Fabrice Drouin
> It would be great to reduce the size of the index because it is well larger than `txindex`: > ... > Instead of storing outpoint (32 + 4 bytes)...
Not needed anymore, see https://github.com/ACINQ/eclair/pull/2613
Closed by https://github.com/ACINQ/eclair/pull/2658 (eclair, through https://github.com/ACINQ/bitcoin-lib, includes JNI bindings for secp256k1-kmp on macos M1)
> Checked the logs: `Makefile:221: recipe for target 'nitro-format' failed` Make sure to run `cargo-fmt --all` before commiting. done in https://github.com/aws/aws-nitro-enclaves-cli/pull/424/commits/dc6467971e9a9315a0ec64986b67be723567f741
> Can you describe a bit more the issue that this patch is fixing? It seems to make the commandline arguments inconsistent, since they follow `snake_case` rather than `kebab-case` in...
We haven't tried yet, but we would need to make https://github.com/ACINQ/secp256k1-kmp available on these platforms and there may be issues with arm targets.
We support macos (x64 and arm64) and iosSimulatorArm64, but we don't have plans to support WatchOS and tvOS.
Since we want to retrieve onchain fee rate each time we connect to an electrum server, and that some may fail to return a valid response, another approach would be...
Moving fee retrieval into the electrum handshake means that if the server returns an error it will be caught by our coroutine exception handler and will not crash the application...
I don't think so since we still ask the electrum server we're connected to for fee estimates and it may return an error ? The point here was do we...