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

bump chia_rs to version 0.2.13 #16737

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 1 addition & 2 deletions chia/full_node/mempool_check_conditions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from chia_rs import (
AGG_SIG_ARGS,
ALLOW_BACKREFS,
ENABLE_ASSERT_BEFORE,
ENABLE_BLS_OPS,
ENABLE_BLS_OPS_OUTSIDE_GUARD,
ENABLE_FIXED_DIV,
Expand Down Expand Up @@ -45,7 +44,7 @@


def get_flags_for_height_and_constants(height: int, constants: ConsensusConstants) -> int:
flags = ENABLE_ASSERT_BEFORE
flags = 0

if height >= constants.SOFT_FORK2_HEIGHT:
flags = flags | NO_RELATIVE_CONDITIONS_ON_EPHEMERAL
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"chiapos==2.0.3", # proof of space
"clvm==0.9.8",
"clvm_tools==0.4.6", # Currying, Program.to, other conveniences
"chia_rs==0.2.11",
"chia_rs==0.2.13",
"clvm-tools-rs==0.1.38", # Rust implementation of clvm_tools' compiler
"aiohttp==3.8.5", # HTTP server for full node rpc
"aiosqlite==0.19.0", # asyncio wrapper for sqlite, to store blocks
Expand Down
4 changes: 2 additions & 2 deletions tests/generator/test_rom.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from chia.types.blockchain_format.serialized_program import SerializedProgram
from chia.types.blockchain_format.sized_bytes import bytes32
from chia.types.generator_types import BlockGenerator
from chia.types.spend_bundle_conditions import ELIGIBLE_FOR_DEDUP, Spend
from chia.types.spend_bundle_conditions import Spend
from chia.util.ints import uint32
from chia.wallet.puzzles.load_clvm import load_clvm, load_serialized_clvm_maybe_recompile

Expand Down Expand Up @@ -155,7 +155,7 @@ def test_get_name_puzzle_conditions(self, softfork_height: int) -> None:
agg_sig_puzzle_amount=[],
agg_sig_parent_amount=[],
agg_sig_parent_puzzle=[],
flags=ELIGIBLE_FOR_DEDUP,
flags=0,
)

assert npc_result.conds.spends == [spend]
Expand Down