Skip to content
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
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Comment to force a cache miss
repos:
- repo: local
hooks:
Expand Down
5 changes: 3 additions & 2 deletions cdv/cmds/chia_inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from chia.full_node.bundle_tools import simple_solution_generator
from chia.types.blockchain_format.coin import Coin
from chia.types.blockchain_format.program import INFINITE_COST, Program
from chia.types.coin_record import CoinRecord
from chia.types.coin_spend import CoinSpend, make_spend
from chia.types.generator_types import BlockGenerator
from chia.util.byte_types import hexstr_to_bytes
Expand All @@ -29,7 +28,7 @@
calculate_synthetic_secret_key,
)
from chia.wallet.wallet_spend_bundle import WalletSpendBundle
from chia_rs import AugSchemeMPL, G1Element, G2Element, PrivateKey
from chia_rs import AugSchemeMPL, CoinRecord, G1Element, G2Element, PrivateKey
from chia_rs.sized_bytes import bytes32
from chia_rs.sized_ints import uint32, uint64

Expand Down Expand Up @@ -488,6 +487,7 @@ def do_inspect_spend_bundle_cmd(
@click.option(
"-ci",
"--confirmed-block-index",
type=int,
help="The block index in which this coin was created",
)
@click.option(
Expand All @@ -501,6 +501,7 @@ def do_inspect_spend_bundle_cmd(
@click.option(
"-t",
"--timestamp",
type=int,
help="The timestamp of the block in which this coin was created",
)
@click.pass_context
Expand Down
3 changes: 1 addition & 2 deletions cdv/cmds/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@
from chia.cmds.cmds_util import format_bytes
from chia.full_node.full_node_rpc_client import FullNodeRpcClient
from chia.types.blockchain_format.coin import Coin
from chia.types.coin_record import CoinRecord
from chia.types.coin_spend import CoinSpend
from chia.types.unfinished_header_block import UnfinishedHeaderBlock
from chia.util.byte_types import hexstr_to_bytes
from chia.util.config import load_config
from chia.util.default_root import DEFAULT_ROOT_PATH
from chia_rs import BlockRecord, FullBlock
from chia_rs import BlockRecord, CoinRecord, FullBlock
from chia_rs.sized_bytes import bytes32
from chia_rs.sized_ints import uint16, uint64

Expand Down
3 changes: 1 addition & 2 deletions cdv/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from chia.consensus.default_constants import DEFAULT_CONSTANTS
from chia.types.blockchain_format.coin import Coin
from chia.types.blockchain_format.program import Program
from chia.types.coin_record import CoinRecord
from chia.types.coin_spend import CoinSpend, make_spend
from chia.util.hash import std_hash
from chia.wallet.derive_keys import master_sk_to_wallet_sk
Expand All @@ -22,7 +21,7 @@
calculate_synthetic_secret_key,
puzzle_for_pk,
)
from chia_rs import AugSchemeMPL, G1Element, G2Element, PrivateKey, SpendBundle
from chia_rs import AugSchemeMPL, CoinRecord, G1Element, G2Element, PrivateKey, SpendBundle
from chia_rs.sized_bytes import bytes32
from chia_rs.sized_ints import uint32, uint64
from typing_extensions import Self
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"pytest-asyncio",
"pytimeparse",
"anyio",
"chia-blockchain==2.5.7",
"chia-blockchain==2.6.0",
]

dev_dependencies = [
Expand Down
Loading