Bitcoin Eagle

Results 11 comments of Bitcoin Eagle

``` Version : 5.7.1 Copyright: 2011-2020 Francis Banyikwa,[email protected] License : GPLv2+ ```

I tried that. It didn't help. My main problem is that I don't know the value for -G argument. I made up the `-G "keyring"` value. I get the same...

#131 AsStr would solve it https://github.com/Peternator7/strum/issues/131#issuecomment-1286851891

Aww, it actually works with the depracated feature. Can you undeprecate it? or maybe just rename to as_str as suggested in https://github.com/Peternator7/strum/issues/131#issuecomment-1286851891 ? ```Rust use strum::{AsStaticRef, AsStaticStr}; #[derive(AsStaticStr)] enum MyEnum...

How about `AsStaticRef` -> `AsStr` and `AsStaticStr` -> `AsStr` ```Rust pub trait AsStr{ fn as_str(&self) -> &'static str } ``` Plus also if the `From` is possible for IntoStaticStr

you are correct, it works. So I turn this into a question. I don't know how to declare Into {} impl &'static str { v.as_static() } fn move_into_str(v: impl EnumIntoStaticStr)...

I got my answer on stackoverflow https://stackoverflow.com/questions/77120723/how-to-declare-supertraits-intot-so-it-works-with-both-move-and-borrow/77122298#77122298 I would vouch for keeping `AsStaticStr` because there is a difference from `IntoStaticStr` as shown in previous comment. Apart from that this issue...

just read the doc https://docs.rs/im/latest/im/#when-does-cloning-happen . TLDR Clone of small-ish values is faster than alternatives and if you have big values just use Rc or Arc where it clones just...

One of the goals of standard derivation paths is to prevent pubkey reuse across different wallets or different altcoins with the same signer. If I create segwit wallet and taproot...