Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#230 fix problem with transfer eth to himself (#381)
  • Loading branch information
sinev-valentine authored Dec 23, 2021
commit 20718b7e5032da1bb7b9a43d50ec5b132772be41
5 changes: 3 additions & 2 deletions proxy/common_neon/transaction_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,10 @@ def create_account_list_by_emulate(self):
code_sol = None
code_writable = None

elif address == sender_ether:
if address == sender_ether:
sender_sol = PublicKey(acc_desc["account"])
else:

if address != to_address and address != sender_ether:
add_keys_05.append(AccountMeta(pubkey=acc_desc["account"], is_signer=False, is_writable=True))
if acc_desc["new"]:
if code_account:
Expand Down