Skip to content

Commit

Permalink
removes unused params
Browse files Browse the repository at this point in the history
  • Loading branch information
wbendick authored and hoffmang9 committed Feb 4, 2021
1 parent f579d98 commit 14dbdad
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/wallet/puzzles/rl_aggregation.clvm
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
(defun-inline create-my-id-condition ()
(list ASSERT_MY_COIN_ID my-id))

(defun-inline create-lock-puzzlehash (consolidating_primary_input
consolidating_coin_puzzle_hash
outgoing_amount)
(defun-inline create-lock-puzzlehash ()
(sha256tree (list r
(list c
(list q
Expand All @@ -27,7 +25,7 @@
(sha256 wallet-coin-primary-input wallet_puzzle wallet-coin-amount))

(defun-inline input-of-lock ()
(list ASSERT_COIN_CONSUMED (sha256 (parent-coin-id) (create-lock-puzzlehash ) 0)))
(list ASSERT_COIN_CONSUMED (sha256 (parent-coin-id) (create-lock-puzzlehash) 0)))

(list (create-my-id-condition)
(input-of-lock))
Expand Down

0 comments on commit 14dbdad

Please sign in to comment.