--- Log opened Tue Sep 22 00:00:25 2020 00:37 -!- peter [~peter@185.114.3.24] has joined #rust-bitcoin 01:22 -!- Kiminuo [~mix@141.98.103.148] has joined #rust-bitcoin 01:26 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has quit [Remote host closed the connection] 01:33 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has quit [Ping timeout: 240 seconds] 01:37 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has joined #rust-bitcoin 02:13 -!- shesek [~shesek@unaffiliated/shesek] has quit [Remote host closed the connection] 02:22 -!- peter [~peter@185.114.3.24] has quit [Ping timeout: 260 seconds] 02:38 -!- peter_ [~peter@185.114.3.24] has joined #rust-bitcoin 02:44 -!- jonatack [~jon@194.187.251.163] has joined #rust-bitcoin 02:48 -!- jonatack [~jon@194.187.251.163] has quit [Ping timeout: 240 seconds] 02:50 -!- jonatack [~jon@37.171.240.64] has joined #rust-bitcoin 02:57 < stevenroose> I'm seeing a sudden increase in usage of the bip39 crate, but since the last version we made was an rc, almost all new usage is using the old branch. Should we upgrade the rc release to just 1.0.0? 03:19 -!- dr-orlovsky [~dr-orlovs@31.14.40.19] has quit [Ping timeout: 246 seconds] 03:20 -!- Veda48McKenzie [~Veda48McK@static.57.1.216.95.clients.your-server.de] has joined #rust-bitcoin 03:45 -!- peter_ [~peter@185.114.3.24] has quit [Remote host closed the connection] 04:06 < stevenroose> In light of that, some small improvements and cleanups + the v1.0.0 release: https://github.com/rust-bitcoin/rust-bip39/pull/4 04:45 -!- vindard [~vindard@190.83.165.233] has quit [Quit: No Ping reply in 180 seconds.] 04:47 -!- vindard [~vindard@190.83.165.233] has joined #rust-bitcoin 05:52 -!- jonatack [~jon@37.171.240.64] has quit [Read error: Connection reset by peer] 06:28 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 240 seconds] 06:31 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #rust-bitcoin 06:53 -!- Veda48McKenzie [~Veda48McK@static.57.1.216.95.clients.your-server.de] has quit [Ping timeout: 272 seconds] 07:05 -!- vindard [~vindard@190.83.165.233] has quit [Ping timeout: 260 seconds] 07:05 -!- vindard [~vindard@190.83.165.233] has joined #rust-bitcoin 07:30 -!- Kiminuo [~mix@141.98.103.148] has quit [Ping timeout: 260 seconds] 08:20 -!- flipchan [~architect@c83-191-161-65.bredband.comhem.se] has joined #rust-bitcoin 08:23 < flipchan> hey everyone, im trying to write a bitcoin address generator in rust 08:23 < flipchan> and i am stuck on the last piece which is to base58 08:24 < flipchan> i filed an issue here: https://github.com/rust-bitcoin/rust-bitcoin/issues/484 08:24 < flipchan> maybe someone can come with some ideas 08:29 < cloudhead> flipchan: looks like you're getting the byte representation of the hex encoding 08:29 < flipchan> cloudhead: yupp 08:29 < cloudhead> instead of converting the hex encoding to a binary encoding 08:29 < cloudhead> that's why the output is much longer 08:30 < flipchan> cloudhead: how should i do it, if i have the hex variable as a string? 08:30 < cloudhead> you need to parse the hex into binary 08:30 < cloudhead> then you can output that as b58 08:30 < cloudhead> so you need some kind of hex decoder 08:30 < cloudhead> I think rust-bitcoin has something like that 08:30 < flipchan> https://docs.rs/bitcoin/0.25.0/bitcoin/util/base58/index.html 08:31 < cloudhead> no not in there 08:32 < flipchan> format!("{:b}", value); 08:33 < cloudhead> no 08:33 < cloudhead> that's a string represenation of binary 08:33 < cloudhead> https://docs.rs/hex/0.4.2/hex/fn.decode.html 08:33 < cloudhead> you need something like this 08:35 < flipchan> yey 08:35 < flipchan> got it working! 08:36 < flipchan> thank you so much cloudhead! 08:37 < sgeisler> our hex impl currently resides in bitcoin_hashes https://docs.rs/bitcoin_hashes/0.9.0/bitcoin_hashes/hex/trait.FromHex.html#method.from_hex 08:38 < sgeisler> but there is an ongoing effort to move it to a separate utility crate 08:52 < stevenroose> sgeisler: ongoing effort? is that new? I'm only aware of an ongoing resolution :D 08:52 < sgeisler> I think dr-orlovsky has some PRs/issue open 08:53 < sgeisler> https://github.com/rust-bitcoin/rust-bitcoin/issues/467 09:04 < flipchan> https://github.com/flipchan/rust-bitcoin 09:09 < cloudhead> flipchan: great! 09:25 -!- instagibbs [~instagibb@pool-71-178-191-230.washdc.fios.verizon.net] has quit [Ping timeout: 260 seconds] 09:25 -!- instagibbs [~instagibb@pool-71-178-191-230.washdc.fios.verizon.net] has joined #rust-bitcoin 09:52 -!- shesek [~shesek@164.90.217.137] has joined #rust-bitcoin 09:52 -!- shesek [~shesek@164.90.217.137] has quit [Changing host] 09:52 -!- shesek [~shesek@unaffiliated/shesek] has joined #rust-bitcoin 10:07 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has joined #rust-bitcoin 10:27 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 258 seconds] 10:40 -!- Kiminuo [~mix@141.98.103.148] has joined #rust-bitcoin 10:41 -!- belcher [~belcher@unaffiliated/belcher] has joined #rust-bitcoin 11:18 < ariard> BlueMatt: #715 SGTM, ofc we should remove bogus transaction generation as it's meddling with the fee bump logic and make it harder to reason on correctness 11:18 < ariard> but we don't have to it _now_ 11:30 < BlueMatt> ariard: alright. yea, i definitely dont think it makes sense to do it in a pr that is blocking another one :) 12:47 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has quit [Quit: jonatack] 12:50 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has joined #rust-bitcoin 12:56 -!- flipchan [~architect@c83-191-161-65.bredband.comhem.se] has quit [Quit: Lost terminal] 13:44 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Remote host closed the connection] 13:44 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #rust-bitcoin 14:08 -!- Kiminuo [~mix@141.98.103.148] has quit [Quit: Leaving] 15:04 -!- junderw [sid43070@gateway/web/irccloud.com/x-otmivaodxntnfmqu] has quit [Ping timeout: 240 seconds] 15:04 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-emezvqtpooboqkzz] has quit [Read error: Connection reset by peer] 15:05 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-wnueoswdnvefglqa] has joined #rust-bitcoin 15:05 -!- junderw [sid43070@gateway/web/irccloud.com/x-qiimpfphbvhuqjmw] has joined #rust-bitcoin 15:33 -!- dr-orlovsky [~dr-orlovs@31.14.40.19] has joined #rust-bitcoin 15:37 -!- shesek [~shesek@unaffiliated/shesek] has quit [Remote host closed the connection] 19:20 -!- dpc1 [dpcmatrixo@gateway/shell/matrix.org/x-irvrkmaaegdlbbtf] has joined #rust-bitcoin 19:20 -!- icota[m]1 [icotamatri@gateway/shell/matrix.org/x-sxcivdfavteepvuu] has joined #rust-bitcoin 19:27 -!- Netsplit *.net <-> *.split quits: paultroon, icota[m], wumpus, dpc 19:33 -!- Netsplit over, joins: paultroon, wumpus 23:30 -!- jonatack [~jon@2a01:e0a:53c:a200:bb54:3be5:c3d0:9ce5] has quit [Ping timeout: 240 seconds] 23:42 -!- jonatack [~jon@static-176-139-55-163.ftth.abo.bbox.fr] has joined #rust-bitcoin 23:48 -!- jonatack [~jon@static-176-139-55-163.ftth.abo.bbox.fr] has quit [Ping timeout: 260 seconds] 23:49 -!- jonatack [~jon@37.164.9.222] has joined #rust-bitcoin --- Log closed Wed Sep 23 00:00:26 2020