Konstantin Akimov

Results 8 comments of Konstantin Akimov

@Empact In the original 2011 implementation, a regular std::string was used for the passphrase: ``` commit b7bcaf940d27fa8cfe89422943fbeaab7a350930 Author: Wladimir J. van der Laan Date: Wed Aug 24 22:07:26 2011 +0200...

> Is it not worthwhile to prevent reallocation if we can @Empact I added one more commit which adds `const` and changes way of initialization of SecureString - there were...

> Seems like adding a const here would be worthwhile. Can you elaborate on the worsened code readability? @epiccurious , here's it: https://github.com/bitcoin/bitcoin/pull/29364/commits/f99d92bde055efaf20c89198eb22dc3e35778d1e not too bad actually, I added a...

Thanks @tonycoz for posting your locale settings. I tried to use them and crash disappeared: ``` export LC_ADDRESS=en_AU.UTF-8 export LC_ALL= export LC_IDENTIFICATION=en_AU.UTF-8 export LC_MEASUREMENT=en_AU.UTF-8 export LC_MONETARY=en_AU.UTF-8 export LC_NAME=en_AU.UTF-8 export LC_NUMERIC=en_AU.UTF-8...

> Can you try to run it in a debugger and get us a backtrace? (E.g. gdb or [Devel::cst](https://metacpan.org/pod/Devel::cst)) Yes, see issue description: ``` $ gdb -q perl (gdb) r...

I tried to build `perl` from tag v5.38.2 (55dd2f792ffc8cefe614350a411f785374281b24) but I got this error: ``` $ git checkout v5.38.2 $ ./Configure -des -Dusethreads $ make $ ./perl crash.pl Can't locate...

``` $ ./perl -I lib ~/tmp/autoauto/crash.pl && echo "OK" OK $ perl -I lib ~/tmp/autoauto/crash.pl && echo "OK" Segmentation fault (core dumped) ``` The issue doesn't reproduce for me on...

> Warn user if masternode is participating or going to participate in the DKG session soon when user want to stop or restart the node > Unfortunately, udjin says that...