Skip to content

Commit

Permalink
Merging v0.9.0 changes from dev to `master
Browse files Browse the repository at this point in the history
  • Loading branch information
thehenrytsai authored Jul 28, 2020
2 parents 2f0af0b + 593ea88 commit 39bba04
Show file tree
Hide file tree
Showing 11 changed files with 1,117 additions and 1,487 deletions.
5 changes: 4 additions & 1 deletion install-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,10 @@ git clone https://github.com/decentralized-identity/ion

Update the configuration for the Sidetree Bitcoin microservice under `json/testnet-bitcoin-config.json`:

- Ensure `bitcoinPeerUri` points to the http location of the Bitcoin Core client you setup earlier in this guide (e.g. `http://localhost:18332`).
- Ensure `bitcoinPeerUri` points to the http location of the Bitcoin Core client you setup earlier in this guide (e.g. `http://localhost:18332` for testnet and `http://localhost:8332` for mainnet with default Bitcoin Core configuration).
- `bitcoinDataDirectory` needs to point to the block files folder:
- mainnet: exactly the same as the `datadir` value configured for Bitcoin Core.
- testnet: `<datadir>/testnet3`.
- Ensure `bitcoinWalletImportString` is populated with your private key.
- Official Bitcoin Core client PRC API requires authentication, so make sure the `bitcoinRpcUsername` & `bitcoinPrcPassword` are populated accordingly.
- Ensure `mongoDbConnectionString` is pointing to your MongoDB (e.g. `mongodb://localhost:27017/`).
Expand Down
1 change: 1 addition & 0 deletions json/mainnet-bitcoin-config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"bitcoinDataDirectory": "[FILL THIS IN!]",
"bitcoinFeeSpendingCutoffPeriodInBlocks": 1,
"bitcoinFeeSpendingCutoff": 0.001,
"bitcoinPeerUri": "http://localhost:8332",
Expand Down
6 changes: 6 additions & 0 deletions json/mainnet-bitcoin-versioning.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"startingBlockchainTime": 633700,
"version": "0.10.0"
}
]
File renamed without changes.
1 change: 1 addition & 0 deletions json/testnet-bitcoin-config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"bitcoinDataDirectory": "[FILL THIS IN!]",
"bitcoinFeeSpendingCutoffPeriodInBlocks": 1,
"bitcoinFeeSpendingCutoff": 0.001,
"bitcoinPeerUri": "http://localhost:18332",
Expand Down
6 changes: 6 additions & 0 deletions json/testnet-bitcoin-versioning.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"startingBlockchainTime": 1764000,
"version": "0.10.0"
}
]
File renamed without changes.
Loading

0 comments on commit 39bba04

Please sign in to comment.