-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
db: common: Fix get_withdrawal_sig_by_idx parse error. (#197)
* db: common: Fix get_withdrawal_sig_by_idx parse error. * db: common: Remove tuple type in get_withdrawal_sig_by_idx. * tests: flow: Add verifier_down_for_withdrawal_signature test. * test: flow: Fix malformed test config. * cargo: Update bitcoin-mock-rpc version to 0.0.4. * extended_rpc: Use the new `new_without_cleanup` call for cloning instead if `new`. * general: Add changes made in main branch to dev branch. * cargo: Update bitcoin-mock-rpc version to 0.0.5.
- Loading branch information
Showing
6 changed files
with
185 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
core/tests/data/test_config_verifier_down_for_withdrawal_signature.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
tracing_debug = "debug,bitcoincore_rpc=info,hyper=error" | ||
host = "127.0.0.1" | ||
port = 3000 | ||
secret_key = "5555555555555555555555555555555555555555555555555555555555555555" | ||
verifiers_public_keys = [ | ||
"4f355bdcb7cc0af728ef3cceb9615d90684bb5b2ca5f859ab0f0b704075871aa", | ||
"466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f27", | ||
"3c72addb4fdf09af94f0c94d7fe92a386a7e70cf8a1d85916386bb2535c7b1b1", | ||
"2c0b7cf95324a07d05398b240174dc0c2be444d96b159aa6c7f7b1e668680991", | ||
"9ac20335eb38768d2052be1dbbc3c8f6178407458e51e6b4ad22f1d91758895b", | ||
] | ||
num_verifiers = 4 | ||
min_relay_fee = 305 | ||
user_takes_after = 5 | ||
confirmation_treshold = 1 | ||
network = "regtest" | ||
bitcoin_rpc_url = "http://127.0.0.1:18443" | ||
bitcoin_rpc_user = "admin" | ||
bitcoin_rpc_password = "admin" | ||
all_secret_keys = [ | ||
"1111111111111111111111111111111111111111111111111111111111111111", | ||
"2222222222222222222222222222222222222222222222222222222222222222", | ||
"3333333333333333333333333333333333333333333333333333333333333333", | ||
"4444444444444444444444444444444444444444444444444444444444444444", | ||
"5555555555555555555555555555555555555555555555555555555555555555", | ||
] | ||
db_host = "127.0.0.1" | ||
db_port = 5432 | ||
db_user = "clementine" | ||
db_password = "" | ||
db_name = "clementine" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters