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

Feat/js procedure #73

Merged
merged 43 commits into from
Jun 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
7ebb8ec
Add Bloom Filters
kn0wmad May 12, 2022
45f3e72
Version bump
kn0wmad May 13, 2022
43cbb8d
Bisq Integration / fix git fuckery
kn0wmad May 18, 2022
a016335
Trezor
kn0wmad May 18, 2022
ac1c98d
key issues remain
kn0wmad May 19, 2022
99c83e6
Still broke
kn0wmad May 21, 2022
6793eb7
key issue remains
kn0wmad May 25, 2022
ee56fcd
Fix build for v23, increase RPC resources
kn0wmad May 26, 2022
d8741b6
remove unncessary commented code
kn0wmad May 27, 2022
88cd463
add patch to version number
kn0wmad May 27, 2022
693631c
adds bloom filters to config options
kn0wmad May 27, 2022
94725dd
allow for possibility that soft forks won't be returned in getblockch…
kn0wmad May 27, 2022
3bb4ac4
update migration for lt_22
kn0wmad Jun 2, 2022
55d489f
Migrations
kn0wmad Jun 7, 2022
1239d1b
Ready for beta testing
kn0wmad Jun 10, 2022
2b23af1
Fix migration filenames, organization
kn0wmad Jun 13, 2022
ad9b250
Fix migration filenames, organization
kn0wmad Jun 13, 2022
60cd243
Add warning when using Bloom Filters, minor migrations bugfixes
kn0wmad Jun 13, 2022
e66ba37
More migrations bugfixes
kn0wmad Jun 13, 2022
59c81c5
More more migrations bugfixes
kn0wmad Jun 13, 2022
5a22f8a
More more more migrations bugfixes
kn0wmad Jun 14, 2022
58fc97a
wip: Get and set of the config
Blu-J Jun 14, 2022
565489f
wip: properties
Blu-J Jun 14, 2022
ae5318d
wip: Make the result
Blu-J Jun 14, 2022
b5f33a0
feat: properties + get + set in the js
Blu-J Jun 14, 2022
afb395e
chore: Rest of the last of set config compat
Blu-J Jun 14, 2022
6b25892
chore: reindex if no previous config
Blu-J Jun 14, 2022
27c7dd4
chore: better make
Blu-J Jun 14, 2022
222019f
chore: fix makefile
Blu-J Jun 14, 2022
fb04690
Typo fix
kn0wmad Jun 14, 2022
76eb735
Cleanup and copy edit
kn0wmad Jun 14, 2022
395dfd1
Add ZMQ config options for eclair compatibility
kn0wmad Jun 15, 2022
6e2c564
Update getConfig.ts
Blu-J Jun 15, 2022
a96047e
chore: update types again
Blu-J Jun 15, 2022
0c3cbbd
Merge remote-tracking branch 'origin/master' into feat/js-procedure
Blu-J Jun 27, 2022
dd32b8e
chore: Fix bad migration
Blu-J Jun 27, 2022
a094688
Added min eos version
kn0wmad Jun 28, 2022
036d625
fix setConfig on fresh install
dr-bonez Jun 29, 2022
16d4ac1
fix: missing properties (#75)
Blu-J Jun 29, 2022
a7f886b
Fixed v21 migration
kn0wmad Jun 29, 2022
4a2ae90
Update release notes
kn0wmad Jun 29, 2022
628ec49
Update instructions
kn0wmad Jun 29, 2022
9f50fbf
Merge branch 'master' into feat/js-procedure
Blu-J Jun 29, 2022
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ manager/target/
**/*.rs.bk
bitcoind.s9pk
image.tar
.vscode/
.vscode/
scripts/embassy.js
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ clean:
rm bitcoind.s9pk
rm image.tar

bitcoind.s9pk: manifest.yaml assets/compat/* image.tar instructions.md $(ASSET_PATHS)
bitcoind.s9pk: manifest.yaml assets/compat/* image.tar instructions.md scripts/embassy.js
embassy-sdk pack

verify: bitcoind.s9pk
Expand Down
3 changes: 3 additions & 0 deletions assets/compat/bitcoin.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ discardfee={{wallet.discardfee}}
## ZERO MQ
{{#IF zmq-enabled
zmqpubrawblock=tcp://0.0.0.0:28332
zmqpubhashblock=tcp://0.0.0.0:28332
zmqpubrawtx=tcp://0.0.0.0:28333
zmqpubhashtx=tcp://0.0.0.0:28333
zmqpubsequence=tcp://0.0.0.0:28333
}}

## TXINDEX
Expand Down
37 changes: 0 additions & 37 deletions assets/compat/config-set.sh

This file was deleted.

7 changes: 0 additions & 7 deletions assets/compat/config_rules.yaml

This file was deleted.

314 changes: 0 additions & 314 deletions assets/compat/config_spec.yaml

This file was deleted.

Loading