-
Notifications
You must be signed in to change notification settings - Fork 41
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
Update bitcoin node version #230
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great apart from the small comments. Also CI doesn't pass can you fix it?
docker-compose.yml
Outdated
@@ -2,7 +2,7 @@ version: "3.4" | |||
services: | |||
### BITCOIND | |||
bitcoind: | |||
image: ruimarinho/bitcoin-core:0.20.0 | |||
image: kylemanna/bitcoind:latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't like to use latest
because things then break unexpectedly.
sample/Readme.md
Outdated
@@ -8,6 +8,8 @@ Example configurations and contract input are available in the [examples](./exam | |||
In order to use the [example contract](./examples/contracts/numerical_contract_input.json) you will need to update the `event_id`. | |||
Replace the part after `btcusd` with a UNIX timestamp in the future. | |||
|
|||
Use the [helper script](../scripts/gen-sample-offer.sh) to create update the example contract 1 hour in the future. This replaces the `event_id` after `btcusd` with a UNIX timestamp 1 hour in the futre. Manually update the value for a longer time period. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the [helper script](../scripts/gen-sample-offer.sh) to create update the example contract 1 hour in the future. This replaces the `event_id` after `btcusd` with a UNIX timestamp 1 hour in the futre. Manually update the value for a longer time period. | |
Use the [helper script](../scripts/gen-sample-offer.sh) to create the example contract 1 hour in the future. This creates an `event_id` with a UNIX timestamp 1 hour in the future. Manually update the value for a longer time period. |
If you rebase on master the clippy errors should be gone. |
cbbee6a
to
b449eaf
Compare
Adds a script
gen-sample-contract.sh
that creates a contract an hour in the future instead of manually editing.Updates the bitcoin-core image to the latest. In doing this, the wallets have to be legacy for the RPC client to work. The RPC client will have to update to use descriptors in the
derive_contract_signer
method.