Merge branch 'remove_unused_field' of https://github.com/greenaddress/electrs into remove-field

This commit is contained in:
Roman Zeyde 2018-08-29 18:41:14 +03:00
commit bb4c7a667d
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB
2 changed files with 1 additions and 2 deletions

View File

@ -34,7 +34,7 @@ First index sync should take ~1.5 hours:
```bash
$ cargo run --release -- -vvv --timestamp --db-dir ./db [--cookie="USER:PASSWORD"]
2018-08-17T18:27:42 - INFO - NetworkInfo { version: 179900, subversion: "/Satoshi:0.17.99/" }
2018-08-17T18:27:42 - INFO - BlockchainInfo { chain: "main", blocks: 537204, headers: 537204, bestblockhash: "0000000000000000002956768ca9421a8ddf4e53b1d81e429bd0125a383e3636", size_on_disk: 204885341685, pruned: false, initialblockdownload: false }
2018-08-17T18:27:42 - INFO - BlockchainInfo { chain: "main", blocks: 537204, headers: 537204, bestblockhash: "0000000000000000002956768ca9421a8ddf4e53b1d81e429bd0125a383e3636", pruned: false, initialblockdownload: false }
2018-08-17T18:27:42 - DEBUG - opening DB at "./db/mainnet"
2018-08-17T18:27:42 - DEBUG - full compaction marker: None
2018-08-17T18:27:42 - INFO - listing block files at "/home/user/.bitcoin/blocks/blk*.dat"

View File

@ -100,7 +100,6 @@ pub struct BlockchainInfo {
blocks: u32,
headers: u32,
bestblockhash: String,
size_on_disk: u64,
pruned: bool,
initialblockdownload: bool,
}