From b2d1d55d681be47d1edf3732696b63960c8e16ba Mon Sep 17 00:00:00 2001 From: Gabriel Fior Date: Mon, 16 Dec 2024 17:32:56 -0300 Subject: [PATCH] Update prediction_market_agent/agents/microchain_agent/nft_treasury_game/app_nft_treasury_game.py Co-authored-by: Peter Jung --- .../microchain_agent/nft_treasury_game/app_nft_treasury_game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prediction_market_agent/agents/microchain_agent/nft_treasury_game/app_nft_treasury_game.py b/prediction_market_agent/agents/microchain_agent/nft_treasury_game/app_nft_treasury_game.py index c85778df..d1f172b4 100644 --- a/prediction_market_agent/agents/microchain_agent/nft_treasury_game/app_nft_treasury_game.py +++ b/prediction_market_agent/agents/microchain_agent/nft_treasury_game/app_nft_treasury_game.py @@ -74,7 +74,7 @@ def send_message_via_wallet( recipient: str, message: str, amount_to_send: float ) -> None: wallet_component( - recipient=Web3.to_checksum_address(recipient), + recipient=recipient, amount_in_ether=f"{amount_to_send:.10f}", # formatting number as 0.0001000 instead of scientific notation data=message, )