Skip to content
Merged
Changes from all commits
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
Fix problem with read receipt of canceled transaction #283
  • Loading branch information
Semen Medvedev committed Nov 12, 2021
commit d2c837b24630ac07e16cebf48d29749d6df7a546
5 changes: 2 additions & 3 deletions proxy/plugin/solana_rest_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,13 +443,12 @@ def eth_sendRawTransaction(self, rawTrx):
'from_address': '0x'+sender,
}
else:
slot = got_result['slot']
self.ethereum_trx[eth_signature] = {
'eth_trx': rawTrx[2:],
'slot': slot,
'logs': None,
'logs': [],
'status': 0,
'gas_used': None,
'gas_used': 0,
'return_value': None,
'from_address': '0x'+sender,
}
Expand Down