Ganache does not include from in receipts (#400).
This commit is contained in:
parent
9f201c386e
commit
b5f720ace6
@ -315,7 +315,7 @@ function checkTransactionReceiptLog(log: any): any {
|
|||||||
|
|
||||||
const formatTransactionReceipt = {
|
const formatTransactionReceipt = {
|
||||||
to: allowNull(getAddress, null),
|
to: allowNull(getAddress, null),
|
||||||
from: getAddress,
|
from: allowNull(getAddress, null), // Gaanche does not populate this (#400)
|
||||||
contractAddress: allowNull(getAddress, null),
|
contractAddress: allowNull(getAddress, null),
|
||||||
transactionIndex: checkNumber,
|
transactionIndex: checkNumber,
|
||||||
root: allowNull(checkHash),
|
root: allowNull(checkHash),
|
||||||
|
Loading…
Reference in New Issue
Block a user