From 87e0df5d8077f407f56fb2b1df08ef8fb74023d6 Mon Sep 17 00:00:00 2001 From: Michael Taylor Date: Wed, 11 Oct 2023 16:30:45 -0400 Subject: [PATCH 1/2] chore: fix json --- app/api/v1/tokens.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/api/v1/tokens.py b/app/api/v1/tokens.py index ba8d7c9..df4b8f7 100644 --- a/app/api/v1/tokens.py +++ b/app/api/v1/tokens.py @@ -309,9 +309,6 @@ async def create_permissionless_retirement_tx( log_data = { "amount": payment.amount, "fee": payment.fee, - "beneficiary_name": payment.beneficiary_name.encode(), - "beneficiary_address": payment.beneficiary_address.encode(), - "beneficiary_puzzle_hash": payment.beneficiary_puzzle_hash, "wallet_id": cat_wallet_info.id } From c35c9fc16744c6bbf7a91d85f072eb269fc6bf42 Mon Sep 17 00:00:00 2001 From: Michael Taylor Date: Wed, 11 Oct 2023 16:31:11 -0400 Subject: [PATCH 2/2] chore: fix json --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b0c6f30..09a9bd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Chia Climate Token Driver" -version = "1.0.31" +version = "1.0.32" description = "https://github.com/Chia-Network/climate-token-driver" authors = ["Harry Hsu ", "Chia Network Inc "]