Pavol Rusnak
Pavol Rusnak
Why are you using 16-bit version of poly1305-donna and not 32-bit or 64-bit version? It seems that default in poly1305-donna.h is to autodetection and using 32 on 32-bit archs and...
This fixes the compatibility with the latest version of Verilog https://github.com/steveicarus/iverilog/releases/tag/v11_0
Github: https://github.com/willcl-ark/lnd_grpc / PyPI: https://pypi.org/project/lnd-grpc/ We might consider using `lnd_grpc` as a dependency. Not sure if it brings particular advantages now, but maybe later ir might make sense to use...
Our node has 500+ channels and it takes quite some time to load the "Channels" page. It makes sense to implement some paging.
Let's introduce the "Node well-connectedness index" - a scalar value that indicates how well-connected a node is. WCI could be computed as this pseudocode: ``` wci = 0 for node...
UI is not responsive, so it is broken on mobile. I guess this is low priority, but I am putting it here so maybe someone from the community can fine-tune...
Somwhere between 6.23.3 and 6.25.3 the API or rocksdb has changed: ``` Compiling electrs-rocksdb v0.15.0-e2 error[E0308]: mismatched types --> /private/tmp/nix-build-electrs-0.9.2.drv-0/electrs-0.9.2-vendor.tar.gz/electrs-rocksdb/src/db_options.rs:477:56 | 477 | ffi::rocksdb_filterpolicy_create_bloom(bits_per_key) | ^^^^^^^^^^^^ expected `f64`, found `i32`...
Since https://github.com/bitcoin/bitcoin/pull/20295 has been merged, it should be possible to run electrs against pruned node. If we encounter a block that is not cached, we can fetch it via the...
## Details - Browser and browser version: Safari 14.1 - OS version: macOS 11.3 (Apple Silicon) - xterm.js version: 4.11.0 (gotty 1.3.0) ### Steps to reproduce 1. install xterm.js with...
It's pretty straightforward to implement TOTP/HOTP in the following way: - we store the TOTP/HOTP secret on the computer (Password manager maybe?) - we extend CipherKeyValue or SignIdentity message to...