1 2015-08-09 00:41:51 <bedeho> Why will a WIF encoded private key corresponding to a compressed public key have two different leading symbols in its base58checkencoding?
 2 2015-08-09 00:42:35 <bedeho> K or L, as is claimed here https://en.bitcoin.it/wiki/List_of_address_prefixes
 3 2015-08-09 00:45:38 <bedeho> \|
 4 2015-08-09 01:00:09 <drazisil> is there a mock bitcoind I could add to my package so travis can run phpunit against my json-rpc library, or is is that something I may have to build?
 5 2015-08-09 10:01:50 <Adlai> drazisil: are you familiar with regtest mode?
 6 2015-08-09 10:03:10 <evoskuil> bedeho: base58 does not provide a 1:1 mapping between a byte in the data and a character in the encoding of that data.
 7 2015-08-09 15:45:25 <bedeho> are version bytes listed her https://en.bitcoin.it/wiki/List_of_address_prefixes written in little or big endian in base58check encoding?
 8 2015-08-09 16:06:24 <wumpus> I don't understand the question - how can bytes be in little or big endian? the prefix byte is the first byte in any case, and base58 could be said to be written in 'big endian' in as far as the initial characters map to the initial bytes..
 9 2015-08-09 16:14:32 <bedeho> wumpus: well, I guess its really only bip32 keys which have multi-byte version field, 4bytes to be spesific
10 2015-08-09 16:14:46 <bedeho> e.g. xpub has version number 0488B21E
11 2015-08-09 16:14:53 <bedeho> in hex
12 2015-08-09 16:15:46 <bedeho> the other ones have single byte field, so in that case it is not relevant, as you say
13 2015-08-09 16:19:19 <wumpus> oh! no idea for those
14 2015-08-09 17:29:19 <drazisil> Adlai: I am sorta, but that won't work on travis, will it?
15 2015-08-09 20:12:47 <Adlai> drazisil: https://github.com/chris-belcher/joinmarket/blob/master/.travis.yml
16 2015-08-09 20:15:10 <drazisil> Adlai: NICE! thank you
17 2015-08-09 20:15:19 <Adlai> thank waxwing
18 2015-08-09 20:15:27 <Adlai> he wrote that :)
19 2015-08-09 20:34:58 <waxwing> iirc i got the bitcoin install part out of a similar travis file in the bitcoin repo (?)
20 2015-08-09 23:54:41 <drazisil> is regtest on the testnet rpc port of 18332?