mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-24 15:29:53 -05:00
Remove confusing coinsol value (it's rather a coin spend) in create_spend_for_message (#17133)
Remove confusing coinsol value (it's rather a coin spend) in create_spend_for_message.
This commit is contained in:
@@ -148,8 +148,7 @@ def create_spend_for_message(
|
||||
puzzle = create_recovery_message_puzzle(recovering_coin, newpuz, pubkey)
|
||||
coin = Coin(parent_of_message, puzzle.get_tree_hash(), uint64(0))
|
||||
solution = Program.to([])
|
||||
coinsol = make_spend(coin, puzzle, solution)
|
||||
return coinsol
|
||||
return make_spend(coin, puzzle, solution)
|
||||
|
||||
|
||||
def match_did_puzzle(mod: Program, curried_args: Program) -> Optional[Iterator[Program]]:
|
||||
|
||||
Reference in New Issue
Block a user