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

Add etched runes in block #3366

Merged
merged 19 commits into from
Apr 15, 2024
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
fix clippy
  • Loading branch information
lugondev committed Mar 28, 2024
commit c2ee2864fc07879e75d332897d103abb39c124d0
4 changes: 2 additions & 2 deletions src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1693,11 +1693,11 @@ impl Index {

let rune_id_to_rune_entry = rtx.open_table(RUNE_ID_TO_RUNE_ENTRY)?;
let id_min = RuneId {
block: block_height,
block: u64::from(block_height),
tx: 0,
};
let id_max = RuneId {
block: block_height + 1,
block: u64::from(block_height + 1),
tx: 0,
};

Expand Down
Loading