From 1279e0931629efe1b4bcfe2e1fc1c93305e5299c Mon Sep 17 00:00:00 2001 From: user Date: Sat, 2 Mar 2024 01:05:25 +0300 Subject: [PATCH] dev@locazia: fix wallet contract init external --- app/core/_blockchain/ton/wallet_v3cr3.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/core/_blockchain/ton/wallet_v3cr3.py b/app/core/_blockchain/ton/wallet_v3cr3.py index c0f3d99..2dd03a3 100644 --- a/app/core/_blockchain/ton/wallet_v3cr3.py +++ b/app/core/_blockchain/ton/wallet_v3cr3.py @@ -86,6 +86,7 @@ class WalletV3CR3(WalletContract): signing_message = begin_cell().store_cell(self.create_signing_message(seqno=0)) _commands = begin_cell().store_uint(0, 32) signing_message = signing_message.store_ref(_commands.end_cell()) + signing_message.end_cell() signature = sign_message( bytes(signing_message.bytes_hash()), self.options['private_key']).signature