1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-24 15:02:21 +01:00
Commit graph

780 commits

Author SHA1 Message Date
Martin Habovstiak
5549287ac6 Implemented custom cookie file
This change allows the user to specify a custom cookie file, which is then
used instead of `~/.bitcoin/.cookie`. This resolves situations when the
user wants to have the cookie file in non-standard path.

Aside from that, the code now pre-computes the default path, improving
the performance by avoiding allocation (and copying). Unfortunately, due
to limitations of Rust, the code doesn't print out cookie configuration
anymore. This however might be safer, since the cookie isn't printed,
and thus doesn't end up in some readable logs by accident.

Closes #176
Closes #189
2019-11-13 15:52:32 +02:00
Roman Zeyde
ef3c387189
Bump version 2019-10-28 22:25:59 +02:00
Roman Zeyde
0b988e3afc
Update Cargo.lock 2019-10-24 22:22:45 +03:00
Roman Zeyde
cd87a3aad5
Merge pull request #182 from Kixunil/update_configure_me
Update `configure_me` as well as other packages
2019-10-24 22:01:26 +03:00
Roman Zeyde
7532a54b48
Merge pull request #183 from MichelKansou/master
Update rust-bitcoin & bitcoin_hashes
2019-10-20 17:10:44 +03:00
Michel Kansou
71575de8a7 Update rust-bitcoin & bitcoin_hashes 2019-10-20 11:37:47 +02:00
Martin Habovstiak
5ac315ff3c Update configure_me as well as other packages
* This should resolve #180, not sure (couldn't get past rocksdb on 1.34)
* Uses new, cleaner way of specifying `config_spec.toml`
2019-10-18 17:14:53 +02:00
Roman Zeyde
1c39b1d561
Fix formatting 2019-10-15 10:48:58 +03:00
Roman Zeyde
a3c60c93ec
Revert "Test Travis CI on ARM"
This reverts commit ac122d8325.
2019-10-15 10:48:04 +03:00
Roman Zeyde
ac122d8325
Test Travis CI on ARM 2019-10-15 10:42:30 +03:00
Roman Zeyde
6afd4af403
Add more duration metrics to query.rs 2019-10-15 10:42:06 +03:00
Roman Zeyde
a347e6719f
Bump version 2019-10-05 12:42:16 +03:00
Roman Zeyde
56d69d1709
Merge branch 'sized_cache' 2019-10-05 12:29:43 +03:00
Roman Zeyde
b059513115
Update Cargo.lock 2019-10-01 20:19:38 +03:00
Martin Habovstiak
35b3cededc Support for user-specified onfiguration files/dirs
This commit upgrades `configure_me` and adds support for `--conf` and
`--conf-dir` parameters, which load the configuration from the specified
place.
2019-09-28 23:13:50 +02:00
Roman Zeyde
4c14b0d0cb
Update RELEASE-NOTES.md 2019-09-20 14:45:21 +03:00
Roman Zeyde
c41bc378df
Add byte-size limit to transaction & block txids' caches
Also, move TransactionCache into `cache` module.

Following https://github.com/romanz/electrs/pull/161 by @dagurval.

Co-authored-by: Dagur Valberg Johannsson <dagurval@pvv.ntnu.no>
2019-09-19 22:30:30 +03:00
Roman Zeyde
61a5af3a1b
Merge branch 'update_configure_me' of https://github.com/Kixunil/electrs into Kixunil/configure_me 2019-09-13 20:24:32 +03:00
Martin Habovstiak
bcb04196c3 Updated to configure_me 0.3.5
This update fixes the issue with hypens and additionally makes error
messages from the build script nicer.

Fixes #170
2019-09-13 18:39:39 +02:00
Roman Zeyde
ff34ee1907
Update Cargo.lock 2019-09-13 14:38:50 +03:00
Roman Zeyde
9856f94160
Remove unused crate 2019-09-07 22:55:37 +03:00
Martin Habovštiak
bbc6fcb21d
Merge branch 'master' into configure_me 2019-09-07 11:33:13 +02:00
Roman Zeyde
e2cca9b85b Use explicit 'dyn' for trait objects 2019-09-07 12:09:43 +03:00
Roman Zeyde
05b653f7f5 Use AtomicU64 after updating to Rust >=1.34 2019-09-07 12:06:19 +03:00
Roman Zeyde
32015a762c Use TryInto to convert slices into array
Remove dependency on `arrayref`.
2019-09-07 12:05:43 +03:00
Roman Zeyde
925e0da460 Support Rust >=1.34 2019-09-07 12:00:24 +03:00
Roman Zeyde
43e0bd31b1 Update RELEASE-NOTES.md 2019-09-07 11:33:17 +03:00
Roman Zeyde
f7ad9419ed cargo fmt 2019-09-07 11:23:43 +03:00
Martin Habovstiak
0cf115d5f6 Updated Cargo.lock 2019-09-06 23:03:17 +02:00
Martin Habovstiak
f050bc4496 Code documentation and cleanup
Besides several comments added to the code, all relevant instances of
`panic!`, `.unwrap()` and `.expect()` were removed in order to keep
messages user-friendly. `.extend()` is used istead of `.push()` on
`PathBuf` for multi-fragment values.
2019-09-06 22:59:31 +02:00
Martin Habovstiak
2b301a3b28 Fixed address resolution
The addresses weren't resolved in case of deserializing from config
file. Besides, resolving addresses in parsing/deserialization code would
make messy code (harder to read). This commit fixes both issues by
moving address resolution to post-processing stage.
2019-09-06 22:13:03 +02:00
Martin Habovstiak
2c50791dc5 Fixed db subdir
As the network name changed from `mainnet` to `bitcoin`, this change
accidentally affected database subdirectory. This would be
backwards-incompatible in a major way (the users would have to notice
the change and rename it).

This commit reverts the name of the subdirectory and renames the
variable to express the intent more explicitly.
2019-09-06 21:38:19 +02:00
Martin Habovstiak
8574aa2a34 Updated doc regarding config files and env vars 2019-09-06 21:23:28 +02:00
Martin Habovstiak
268fbf5c09 Added CWD cfg file and fixed ordering of cfg files
The values in user-level config file should override system config file,
not the other way arounnd. Also added `electrs.toml` config file which
is searched for in the current directory.
2019-09-06 20:29:29 +02:00
Martin Habovstiak
ec049b9ad5 Use configure_me instead of clap
Since use of configuration files is both mmore secure and more
convenient and clap doesn't support config files, this switches to
configure_me, which supports config files, env vars and also generating
man pages.

Closes #151
2019-09-06 20:16:51 +02:00
Roman Zeyde
a61e1b3b7a
docs: add hardware specs and explain storage usage 2019-08-13 21:26:18 +03:00
Roman Zeyde
b33b570704
Add a script for computing tx fee 2019-08-03 14:46:39 +03:00
Roman Zeyde
a0fc0b895d
Cache transactions returned via Query::load_txn() 2019-08-03 12:50:44 +03:00
Roman Zeyde
2860966748
Update Cargo.lock 2019-08-03 10:53:46 +03:00
Roman Zeyde
fcbf16b9f1
Bump version 2019-07-27 17:42:32 +03:00
Roman Zeyde
35f456751f
Allow stopping bulk indexing via SIGINT/SIGTERM 2019-07-17 20:14:06 +03:00
Roman Zeyde
25ce69ea04
Add link to Electrum Tor documentation 2019-07-05 18:52:22 +03:00
Roman Zeyde
16e4de60a4
Add documentation for running Tor service 2019-07-05 18:47:24 +03:00
Dagur Valberg Johannsson
ebc4dc3829 Test for BlockTxIDsCache 2019-07-04 22:24:27 +00:00
Dagur Valberg Johannsson
6ba67cb9f6 Add metrics to blocktxids cache 2019-07-04 08:18:54 +00:00
Dagur Valberg Johannsson
2e9ac5c0d8 Cache list of transaction IDs for blocks 2019-07-04 08:18:16 +00:00
Roman Zeyde
dc92454c9d
Update Cargo.lock 2019-06-13 22:46:34 +03:00
Roman Zeyde
5d37e7fe52
Bump version 2019-06-13 22:35:10 +03:00
Roman Zeyde
3b8993db8a
Update release notes 2019-06-13 22:34:26 +03:00
Roman Zeyde
70d0c1d47f
Merge branch 'atomic-counter' 2019-06-13 22:25:29 +03:00