-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Tobin C. Harding edited this page Sep 2, 2024
·
1 revision
-
Start a local btc node using
contrib/run_bitcoind.sh start v17
-
Add the type to
json/src/v17/blockchain.rs
(and implementinto_model()
) -
Re-export it from
json/src/v17/mod.rs
-
Add the type to
json/src/model/blockchain.rs
-
Re-export it from
model/mod.rs
-
Add
impl_client_v17__getblockhash
toclient/src/client_sync/v17/blockchain.rs
-
Call the macro in client/src/client_sync/v17/mod.rs
-
Add
impl_test_v17__getblockhash
tointegration_test/src/v17/blockchain.rs
-
Call the macro in
integration_test/tests/v17_api.rs
-
Check it off in
json/src/v17/mod.rs
-
Run the formatter
-
Run the test with
cargo test --features=0_17_1 get_block_hash