Boris Nagaev
Boris Nagaev
I checked Rest API of LND 0.19.1 with this Python script: ```py import base64, codecs, json, requests REST_HOST = '127.0.0.1:20080' MACAROON_PATH = '/home/user/.lnd/data/chain/bitcoin/signet/admin.macaroon' TLS_PATH = '/home/user/.lnd/tls.cert' url = f'https://{REST_HOST}/v1/signmessage' macaroon...
@cmonfortep Thanks for the response! I understand now, why sending a `HEAD` request is not a good idea: in case of HTLM or image content it would cause an additional...
@yyforyongyu Sorry for the delay! This is still relevant. The original error was reported here: https://github.com/lightninglabs/loop/issues/898 ``` 2025-03-18 12:23:45.308 [ERR] LOOPD: Runtime error in daemon, shutting down: batcher error: failed...
I sent another PR to allow conf_target 1: https://github.com/lightningnetwork/lnd/pull/10087 I think we can close this PR.
> How to get full list names of depend libraries for static Qt5? Like this: ``` ./usr/bin/i686-w64-mingw32.static-pkg-config -libs Qt5Core ``` Add other Qt components if you need them. Full list...
3) Are you sure that system package `nsis` (e.g., from Debian) can build a 64-bit installer?
@pavelvat, I think it is generally a bad idea to add a package to requirements, if it is built by MXE and can be used. The main problem here is...
> As stated in #9141 review, this is a NACK from me. If we do this we should tightly define the testing interface we want to conform to and then...
I found a bug in `Result.UnwrapOrFail` implementation. It used to return zero value in case of success. It should return the value stored. I put it into a separate commit...