mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-20 13:44:59 +01:00
Add new section to README for running bitcoin-s, add link to the web frontend (#4069)
This commit is contained in:
parent
9de4b0272a
commit
35dccd88d6
2 changed files with 13 additions and 1 deletions
11
README.md
11
README.md
|
@ -7,6 +7,7 @@ For a complete guide on how to get started with Bitcoin-S, see our website at [B
|
|||
|
||||
### Contents
|
||||
|
||||
- [Running bitcoin-s](#running-bitcoin-s)
|
||||
- [What is bitcoin-s?](#what-is-bitcoin-s-)
|
||||
- [Is bitcoin-s production ready?](#is-bitcoin-s-production-ready-)
|
||||
- [Can I trust the code in bitcoin-s?](#can-i-trust-the-code-in-bitcoin-s-)
|
||||
|
@ -18,6 +19,16 @@ For a complete guide on how to get started with Bitcoin-S, see our website at [B
|
|||
- [Good first issues](#good-first-issues)
|
||||
- [License](#license)
|
||||
|
||||
### Running bitcoin-s
|
||||
|
||||
You have three options to run bitcoin-s. Here are the instructions.
|
||||
|
||||
We recommend using the web frontend for beginners.
|
||||
|
||||
1. [Web frontend](https://github.com/bitcoin-s/bitcoin-s-ts/tree/master/wallet-server-ui#walletserverui)
|
||||
2. [Desktop GUI](https://bitcoin-s.org/docs/applications/gui#running-the-gui)
|
||||
3. [Headless backend](https://bitcoin-s.org/docs/applications/server#app-server)
|
||||
|
||||
|
||||
### What is bitcoin-s?
|
||||
|
||||
|
|
|
@ -54,7 +54,8 @@ private[wallet] trait RescanHandling extends WalletLogger {
|
|||
|
||||
rescanning.set(true)
|
||||
|
||||
logger.info(s"Starting rescanning the wallet from ${startOpt} to ${endOpt}")
|
||||
logger.info(
|
||||
s"Starting rescanning the wallet from ${startOpt} to ${endOpt} useCreationTime=$useCreationTime")
|
||||
|
||||
val start = System.currentTimeMillis()
|
||||
val res = for {
|
||||
|
|
Loading…
Add table
Reference in a new issue