Skip to content

Commit

Permalink
Force deploy receipt to address to be null (ethers-io#573).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Oct 19, 2019
1 parent c767712 commit def4fec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src.ts/formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export class Formatter {
};

formats.receipt = {
to: Formatter.allowNull(this.address),
from: Formatter.allowNull(this.address),
to: Formatter.allowNull(this.address, null),
from: Formatter.allowNull(this.address, null),
contractAddress: Formatter.allowNull(address, null),
transactionIndex: number,
root: Formatter.allowNull(hash),
Expand Down

0 comments on commit def4fec

Please sign in to comment.