Skip to content

Commit 87348bd

Browse files
tiendqfselmo
authored andcommitted
fix wait_for_transaction_receipt example output
1 parent 332ff99 commit 87348bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/web3.eth.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -618,17 +618,17 @@ The following methods are available on the ``web3.eth`` namespace.
618618
# ...
619619
# Then when the transaction is added to a block, its receipt is returned:
620620
AttributeDict({
621-
'blockHash': '0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd',
621+
'blockHash': HexBytes('0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd'),
622622
'blockNumber': 46147,
623623
'contractAddress': None,
624624
'cumulativeGasUsed': 21000,
625625
'from': '0xA1E4380A3B1f749673E270229993eE55F35663b4',
626626
'gasUsed': 21000,
627627
'logs': [],
628-
'logsBloom': '0x000000000000000000000000000000000000000000000000...0000',
628+
'logsBloom': HexBytes('0x000000000000000000000000000000000000000000000000...0000'),
629629
'status': 1,
630630
'to': '0x5DF9B87991262F6BA471F09758CDE1c0FC1De734',
631-
'transactionHash': '0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060',
631+
'transactionHash': HexBytes('0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060'),
632632
'transactionIndex': 0,
633633
})
634634

0 commit comments

Comments
 (0)