--- Log opened Thu Mar 05 00:00:12 2020 01:07 -!- Netsplit *.net <-> *.split quits: real_or_random, jonatack, wumpus, fiatjaf 01:43 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has joined #rust-bitcoin 01:43 -!- fiatjaf [~fiatjaf@2804:7f2:2980:90fa:ea40:f2ff:fe85:d2dc] has joined #rust-bitcoin 01:43 -!- real_or_random [~real_or_r@173.249.7.254] has joined #rust-bitcoin 01:43 -!- wumpus [~ircclient@pdpc/supporter/professional/wumpus] has joined #rust-bitcoin 03:06 -!- belcher [~belcher@unaffiliated/belcher] has joined #rust-bitcoin 03:08 -!- Claudine65Grady [~Claudine6@ns334669.ip-5-196-64.eu] has joined #rust-bitcoin 03:46 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has joined #rust-bitcoin 03:47 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has quit [Client Quit] 05:55 -!- belcher [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 05:55 -!- belcher [~belcher@unaffiliated/belcher] has joined #rust-bitcoin 06:02 -!- belcher [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 06:03 -!- belcher [~belcher@unaffiliated/belcher] has joined #rust-bitcoin 06:06 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has joined #rust-bitcoin 06:10 -!- aahabb [~aahabb@149.157.108.123] has joined #rust-bitcoin 06:11 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has quit [Ping timeout: 240 seconds] 06:49 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has joined #rust-bitcoin 06:58 -!- aahabb [~aahabb@149.157.108.123] has quit [Remote host closed the connection] 06:59 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has quit [Quit: Sleep mode] 07:01 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has joined #rust-bitcoin 07:53 -!- Kiminuo [~mix@141.98.103.180] has quit [Ping timeout: 258 seconds] 07:58 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has quit [Quit: Sleep mode] 08:01 -!- Kiminuo [~mix@141.98.103.94] has joined #rust-bitcoin 08:09 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has joined #rust-bitcoin 08:09 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has quit [Client Quit] 08:10 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has joined #rust-bitcoin 10:10 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has quit [Quit: Sleep mode] 10:27 -!- titanbiscuit [~tbisk@titan.pathogen.is] has quit [Ping timeout: 258 seconds] 10:27 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 10:31 -!- tbisker8 [~tbisk@103.227.255.214] has joined #rust-bitcoin 10:32 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Read error: Connection reset by peer] 10:43 -!- tbisker8 [~tbisk@103.227.255.214] has quit [Ping timeout: 260 seconds] 10:45 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 11:03 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-fliqnewyacvxaztl] has quit [Quit: Updating details, brb] 11:03 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-plguiblqaomplirx] has joined #rust-bitcoin 11:25 < stevenroose> andytoshi: is there a reason for the recoverable signature API to be so annoying? 11:26 < stevenroose> Was it because we don't want it to be bitcoin signed message specific? 11:27 < stevenroose> Maybe in that case we could use some types in bitcoin::util::misc to help with signed message stuff. Basically to help out with these things: https://github.com/stevenroose/hal/blob/master/src/bin/hal/cmd/message.rs 11:28 < stevenroose> I did them in hal and I'm doing them now somewhere else again, there's really no way around doing all that if you are dealing with bitcoin signed messages.w 11:43 < elichai2> What specifically do you not like? 11:43 < elichai2> It's mostly a wrapper around secp headers 11:48 < stevenroose> that the serialization of it just returns an integer and a byte string, so it doesn't really "serialize" proper 11:55 <@andytoshi> stevenroose: yeah, that's because that's how the libsecp api works 11:55 <@andytoshi> and yeah, it is slated for deprecation and would've been gone years ago if it weren't for bitcoin 12:26 < stevenroose> I added a type to help with this: https://github.com/rust-bitcoin/rust-bitcoin/pull/413 12:26 < stevenroose> I do know that adding base64 as a dep might be controversial :p 12:27 < stevenroose> andytoshi: feel free to implement base64 yourself instead :D 12:29 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has joined #rust-bitcoin 12:31 <@andytoshi> stevenroose: base64 broke us in a minor release 12:31 < elichai2> Doesn't look that bad to implement ourselves https://en.m.wikibooks.org/wiki/Algorithm_Implementation/Miscellaneous/Base64 12:32 <@andytoshi> oh i see 12:32 < elichai2> And we can copy core's impl if we really want 12:32 <@andytoshi> steven found an alternate base64 dep 12:33 <@andytoshi> lol what a jackass the base64 maintainer is 12:34 < elichai2> Oh OK 12:42 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has quit [Quit: Sleep mode] 12:48 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has joined #rust-bitcoin 12:53 -!- michaelfolkson [~textual@2a00:23c5:be01:b201:55fc:f43c:fed0:4fc6] has quit [Quit: Sleep mode] 13:04 -!- Claudine65Grady [~Claudine6@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 258 seconds] 13:07 -!- michaelfolkson [~textual@host86-177-156-70.range86-177.btcentralplus.com] has joined #rust-bitcoin 13:07 -!- michaelfolkson [~textual@host86-177-156-70.range86-177.btcentralplus.com] has quit [Client Quit] 14:15 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 268 seconds] 14:18 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 14:24 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 255 seconds] 14:24 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 14:33 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 256 seconds] 14:35 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 14:37 -!- belcher [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 14:43 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 258 seconds] 14:44 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 14:48 -!- tbisker8 [~tbisk@103.227.255.214] has joined #rust-bitcoin 14:48 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Read error: Connection reset by peer] 14:53 -!- tbisker8 [~tbisk@103.227.255.214] has quit [Read error: Connection reset by peer] 14:54 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 15:02 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 260 seconds] 15:04 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 15:13 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 260 seconds] 15:16 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 15:24 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 255 seconds] 15:25 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 15:33 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 260 seconds] 15:34 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 15:43 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 260 seconds] 15:44 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 15:44 -!- mryandao_ [~mryandao@gateway/tor-sasl/mryandao] has joined #rust-bitcoin 15:45 -!- mryandao_ is now known as mryandao 17:30 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 260 seconds] 17:33 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 17:41 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Quit: ZNC 1.7.4 - https://znc.in] 17:42 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 17:51 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has joined #rust-bitcoin 17:59 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Quit: ZNC 1.7.4 - https://znc.in] 18:00 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 18:13 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 258 seconds] 18:28 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 18:33 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 256 seconds] 18:34 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 18:40 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 265 seconds] 18:41 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 18:42 -!- willcl_ark [~quassel@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has quit [Ping timeout: 260 seconds] 18:45 -!- tbisker8 [~tbisk@103.227.255.214] has joined #rust-bitcoin 18:46 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Read error: Connection reset by peer] 18:50 -!- tbisker8 [~tbisk@103.227.255.214] has quit [Read error: Connection reset by peer] 18:52 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 18:55 -!- Dean_Guss [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 240 seconds] 18:55 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Read error: Connection reset by peer] 18:55 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 19:22 -!- willcl_ark [~quassel@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has joined #rust-bitcoin 19:26 -!- stanimal [~stanimal@195.159.29.126] has quit [Remote host closed the connection] 19:26 -!- simian_za [~simian_za@195.159.29.126] has quit [Remote host closed the connection] 19:26 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:26 -!- Blackwolfsa4 [~Blackwolf@195.159.29.126] has quit [Remote host closed the connection] 19:26 -!- neonknight64 [~neonknigh@195.159.29.126] has quit [Remote host closed the connection] 19:27 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:27 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:27 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:27 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:28 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:28 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:28 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:28 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:29 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:29 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:29 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:29 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:30 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:30 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:32 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:32 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:34 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:34 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:34 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:34 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:36 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:36 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:36 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:36 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:37 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:37 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:37 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:37 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:39 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:39 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:39 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:39 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:41 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:41 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:43 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:43 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:43 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:43 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:44 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:44 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:46 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:46 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:49 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:49 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:49 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:49 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:50 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:50 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:52 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:52 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:55 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:55 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:55 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:55 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Remote host closed the connection] 19:56 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:56 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 19:58 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 19:58 -!- CjS77 [~caylemeis@195.159.29.126] has quit [Read error: Connection reset by peer] 20:01 -!- CjS77 [~caylemeis@195.159.29.126] has joined #rust-bitcoin 20:01 -!- neonknight64 [~neonknigh@195.159.29.126] has joined #rust-bitcoin 20:01 -!- simian_za [~simian_za@195.159.29.126] has joined #rust-bitcoin 20:01 -!- Blackwolfsa4 [~Blackwolf@195.159.29.126] has joined #rust-bitcoin 20:01 -!- stanimal [~stanimal@195.159.29.126] has joined #rust-bitcoin 20:58 -!- stevenroose [~steven@irc.roose.io] has quit [Remote host closed the connection] 20:59 -!- stevenroose [~steven@irc.roose.io] has joined #rust-bitcoin 22:41 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 256 seconds] 22:44 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 23:20 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 256 seconds] 23:25 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin 23:46 -!- titanbiscuit [~tbisk@103.227.255.214] has quit [Ping timeout: 268 seconds] 23:57 -!- titanbiscuit [~tbisk@103.227.255.214] has joined #rust-bitcoin --- Log closed Fri Mar 06 00:00:18 2020