Skip to content

Commit

Permalink
prevent compilation of Blocks module
Browse files Browse the repository at this point in the history
  • Loading branch information
TAdev0 committed Aug 12, 2024
1 parent b625a33 commit c20b3b8
Show file tree
Hide file tree
Showing 12 changed files with 728,477 additions and 555,309 deletions.
2 changes: 1 addition & 1 deletion scripts/data/block_filter.jq
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def txin:

def txout:
"TxOut {
value: \(.value*100000000)_u64,
value: \((.value*100000000) | round)_u64,
pk_script: from_base16(\"\(.scriptPubKey.hex)\"),
}"
;
Expand Down
18 changes: 9 additions & 9 deletions tests/blocks.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ mod block_0;
mod block_170;
mod block_24835;
mod block_57043;
// mod block_210000;
// mod block_420000;
// mod block_478558;
// mod block_481824;
// mod block_491407;
// mod block_630000;
// mod block_709632;
// mod block_774628;
// mod block_840000;
mod block_210000;
mod block_420000;
mod block_478558;
mod block_481824;
mod block_491407;
mod block_630000;
mod block_709632;
mod block_774628;
mod block_840000;


Loading

0 comments on commit c20b3b8

Please sign in to comment.