Skip to content

Commit

Permalink
Force deploy receipt to address to be null (#573).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Oct 19, 2019
1 parent 3d514c8 commit d9d438a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/providers/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 d9d438a

Please sign in to comment.