Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify fallback fee when starting bitcoin daemon #63

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ AMOUNT=
ACCOUNT=

start:
$(BITCOIND) $(B1) -daemon
$(BITCOIND) $(B2) -daemon
$(BITCOIND) $(B1) -daemon -fallbackfee=0.00002
$(BITCOIND) $(B2) -daemon -fallbackfee=0.00002

start-gui:
$(BITCOINGUI) $(B1) &
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ earlier history of the repo, where some testnet data was included.

### Regular Clone
```
git clone git@github.com:freewil/bitcoin-testnet-box.git
git clone https://github.com/hikchi/bitcoin-testnet-box.git
```

### Shallow Clone
```
git clone --shallow-since 2014-10-18 git@github.com:freewil/bitcoin-testnet-box.git
git clone --shallow-since 2014-10-18 https://github.com/hikchi/bitcoin-testnet-box.git
```

## Starting the testnet-box
Expand Down Expand Up @@ -133,7 +133,7 @@ $ make address2
To send bitcoins that you've generated to the second wallet: (be sure to change the ADDRESS value below to wallet address generated in the prior command)

```
$ make sendfrom1 ADDRESS=mxwPtt399zVrR62ebkTWL4zbnV1ASdZBQr AMOUNT=10
$ make sendfrom1 ADDRESS=<address_newly_generated> AMOUNT=<amount_to_send>
```

## Does the balance show up?
Expand Down Expand Up @@ -167,20 +167,20 @@ an isolated container.
### Building docker image

Pull the image
* `docker pull freewil/bitcoin-testnet-box`
* `docker pull freewil/bitcoin-testnet-box` (this might fail because it's lack of `-fallbackfee` argument)

or build it yourself from this directory
* `docker build -t bitcoin-testnet-box .`
or build it yourself from this directory (suggested way)
* `docker build -t bitcoin-testnet-box .`

### Running docker container
The docker image will run two bitcoin nodes in the background and is meant to be
attached to allow you to type in commands. The image also exposes
the two JSON-RPC ports from the nodes if you want to be able to access them
from outside the container.

`$ docker run -t -i -p 19001:19001 -p 19011:19011 freewil/bitcoin-testnet-box`
`$ docker run -t -i -p 19001:19001 -p 19011:19011 freewil/bitcoin-testnet-box` (this might fail because it's lack of `-fallbackfee` argument)

or if you built the docker image yourself:
or if you built the docker image yourself (suggested way):

`$ docker run -t -i -p 19001:19001 -p 19011:19011 bitcoin-testnet-box`

Expand Down