bitcoind
bitcoind copied to clipboard
Change: `args: Vec<&str>`
using Vec<&str> as args in Conf doesn't allow the caller to use String, use something allowing that (T: Borrow<&str>, Vec<T>?)
Args should really be OsString, or in this case you probably want Cow<'a, OsStr>