--- Log opened Mon Jun 17 00:00:44 2019 01:08 -!- ccdle12 [~ccdle12@182.52.241.16] has joined #rust-bitcoin 01:13 -!- ccdle12 [~ccdle12@182.52.241.16] has quit [Ping timeout: 272 seconds] 01:13 -!- ccdle12 [~ccdle12@182.52.241.16] has joined #rust-bitcoin 02:45 -!- ccdle12 [~ccdle12@182.52.241.16] has quit [Remote host closed the connection] 02:47 -!- ccdle12 [~ccdle12@182.52.241.16] has joined #rust-bitcoin 02:52 -!- ccdle12 [~ccdle12@182.52.241.16] has quit [Ping timeout: 245 seconds] 03:08 < stevenroose> justinmoon: usually Errors are enums, so you can match against their enum variants. F.e. the encode::Error enum has a variant Error::UnexpectedNetworkMagic. So you can match with `match e { Err(encode::Error::UnexpectedNetworkMagic) => {} }`. 03:10 < stevenroose> It's also common for error variants to wrap other error objects, like the encode::Error::Base58 variant that wraps a base58::Error. Matching could be like this: `match e { Err(encode::Error::Base58(base58::Error::BadChecksum(cs1, cs2))) => println!("bad checksum: {:x}{:x}", cs1, cs2) }` 03:11 < stevenroose> Or one can leave the wrapped error as is like this: `match e { Err(encode::Error::Base58(ref b58e)) => println!("wrong base58!: {}", b58e) }` 04:14 -!- ccdle12 [~ccdle12@182.52.241.16] has joined #rust-bitcoin 04:17 -!- ccdle12 [~ccdle12@182.52.241.16] has quit [Read error: Connection reset by peer] 04:17 -!- ccdle12 [~ccdle12@182.52.241.16] has joined #rust-bitcoin 04:47 -!- ccdle12_ [~ccdle12@182.52.241.16] has joined #rust-bitcoin 04:47 -!- ccdle12 [~ccdle12@182.52.241.16] has quit [Read error: Connection reset by peer] 06:13 -!- ccdle12 [~ccdle12@182.52.241.16] has joined #rust-bitcoin 06:14 -!- ccdle12_ [~ccdle12@182.52.241.16] has quit [Read error: Connection reset by peer] 07:02 -!- real_or_random [~real_or_r@2a02:c207:3002:7468::1] has quit [Quit: ZNC 1.7.3 - https://znc.in] 07:02 -!- real_or_random [~real_or_r@2a02:c207:3002:7468::1] has joined #rust-bitcoin 07:46 -!- ccdle12 [~ccdle12@182.52.241.16] has quit [Read error: Connection reset by peer] 07:46 -!- ccdle12_ [~ccdle12@182.52.241.16] has joined #rust-bitcoin 07:53 -!- ccdle12_ [~ccdle12@182.52.241.16] has quit [Remote host closed the connection] 16:19 -!- elichai2 [uid212594@gateway/web/irccloud.com/x-qptvzsomjuhpjqlx] has joined #rust-bitcoin 18:17 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has joined #rust-bitcoin 18:57 -!- elichai2 [uid212594@gateway/web/irccloud.com/x-qptvzsomjuhpjqlx] has quit [Quit: Connection closed for inactivity] 19:15 -!- ccdle12 [~ccdle12@182.52.241.114] has joined #rust-bitcoin 19:15 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 256 seconds] 19:26 -!- elichai2 [uid212594@gateway/web/irccloud.com/x-fkmcdfuolooawmgv] has joined #rust-bitcoin 20:06 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has joined #rust-bitcoin 21:41 -!- ghost43_ [~daer@gateway/tor-sasl/daer] has joined #rust-bitcoin 21:41 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Remote host closed the connection] 22:36 -!- dongcarl [sid321684@gateway/web/irccloud.com/x-wqiqtyqzfcknbffs] has quit [Ping timeout: 252 seconds] 22:36 -!- johnyukon21_ [uid365684@gateway/web/irccloud.com/x-kumvutcxogmtatet] has quit [Ping timeout: 252 seconds] 22:37 -!- elichai2 [uid212594@gateway/web/irccloud.com/x-fkmcdfuolooawmgv] has quit [Quit: Connection closed for inactivity] 22:37 -!- dongcarl [sid321684@gateway/web/irccloud.com/x-srbckoimoogdprxd] has joined #rust-bitcoin 22:38 -!- johnyukon21_ [uid365684@gateway/web/irccloud.com/x-zqqizxgkjmkpaxwz] has joined #rust-bitcoin 22:46 -!- ccdle12 [~ccdle12@182.52.241.114] has quit [Remote host closed the connection] 22:47 -!- ccdle12 [~ccdle12@182.52.241.114] has joined #rust-bitcoin 22:51 -!- ccdle12 [~ccdle12@182.52.241.114] has quit [Ping timeout: 246 seconds] 23:56 -!- TamasBlummer1 [~Thunderbi@p200300DD67196B42E5636C8F331DC499.dip0.t-ipconnect.de] has joined #rust-bitcoin 23:58 -!- TamasBlummer [~Thunderbi@p200300DD67196B89E5636C8F331DC499.dip0.t-ipconnect.de] has quit [Ping timeout: 264 seconds] 23:58 -!- TamasBlummer1 is now known as TamasBlummer --- Log closed Tue Jun 18 00:00:45 2019