Transaction receipts in Ganache do not return logsBloom; making it optional.

This commit is contained in:
Richard Moore 2018-03-17 17:40:47 -04:00
parent 1ec8f9cf85
commit ce7718c87e
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295

View File

@ -296,7 +296,7 @@ var formatTransactionReceipt = {
transactionIndex: checkNumber,
root: allowNull(checkHash),
gasUsed: utils.bigNumberify,
logsBloom: utils.hexlify,
logsBloom: allowNull(utils.hexlify),
blockHash: checkHash,
transactionHash: checkHash,
logs: arrayOf(checkTransactionReceiptLog),