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

Unified OUTPOINT_TO_UTXO_ENTRY table #3915

Merged
merged 30 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c21d4db
upgrade redb to 2.1.1
Aug 18, 2024
816a4cd
remove --index-spent-sats
Aug 18, 2024
c274dcb
remove redundant pointer handling in index_inscriptions()
Aug 19, 2024
2df81bb
fix incorrect is_output_spent() results when not using --index-sats
Aug 20, 2024
29b396b
unified OUTPOINT_TO_UTXO_ENTRY table
Aug 20, 2024
e033c70
remove unneeded members from InscriptionUpdater
Aug 23, 2024
ce6f199
remove redundant stats
Aug 19, 2024
8ab4c5a
use the address index when exporting with addresses
Aug 19, 2024
a8e55f7
index_transaction_output_script_pubkeys() can just return () now
Aug 27, 2024
26c4535
Alphabetize and renumber statistics
casey Aug 29, 2024
962ae31
Combine use statements in utxo_entry.rs
casey Aug 29, 2024
ce0cd76
Alphebetize derives on UtxoEntry
casey Aug 29, 2024
e98dedc
Go back to default logging timestamp
casey Aug 29, 2024
162a155
Add doc comment to Index::is_special_outpoint
casey Aug 29, 2024
804f02a
Inline utxo_entry var
casey Aug 29, 2024
f2c4029
Inline sat_ranges var
casey Aug 29, 2024
7be3b8f
parsed_inscriptions -> inscriptions
casey Aug 29, 2024
c17c489
Import ParsedUtxoEntry and UtxoEntryBuf in index.rs
casey Aug 29, 2024
123ef99
inscriptions -> has_new_inscriptions
casey Aug 29, 2024
906da20
parsed_inscriptions -> transferred_inscriptions
casey Aug 29, 2024
a2c99f8
Tweak comment
casey Aug 29, 2024
3353d94
Use turbofish instead of type annotation
casey Aug 29, 2024
b073df7
SatRangesOrValue -> Sats
casey Aug 29, 2024
22d6a55
Use entry/value terminology
casey Aug 29, 2024
aa78319
Tweak comment
casey Aug 29, 2024
597acd5
NeedSatRangesOrValue -> NeedSats
casey Aug 29, 2024
f31ba3c
Merge branch 'master' into unified-table
casey Aug 29, 2024
e2a096c
Merge remote-tracking branch 'upstream/master' into unified-table
casey Aug 29, 2024
ae60f7c
Go back to old names
casey Sep 3, 2024
05ca1d5
Make schema statistic key zero again
casey Sep 3, 2024
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
21 changes: 21 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ miniscript = "10.0.0"
mp4 = "0.14.0"
ord-bitcoincore-rpc = "0.17.2"
ordinals = { version = "0.0.9", path = "crates/ordinals" }
redb = "2.0.0"
redb = "2.1.1"
ref-cast = "1.0.23"
regex = "1.6.0"
reqwest = { version = "0.11.27", features = ["blocking", "json"] }
rss = "2.0.1"
Expand Down
1 change: 0 additions & 1 deletion ord.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ index_addresses: true
index_cache_size: 1000000000
index_runes: true
index_sats: true
index_spent_sats: true
index_transactions: true
integration_test: true
no_index_inscriptions: true
Expand Down
Loading
Loading