Skip to content
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.

Commit

Permalink
fix: rename poly response file
Browse files Browse the repository at this point in the history
  • Loading branch information
monitz87 committed Sep 9, 2019
1 parent 2f06a3d commit 100fee2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/PolyResponse.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { TransactionReceiptWithDecodedLogs } from 'ethereum-types';

export class PolyResponse {
public txHash : string;
public receiptAsync : Promise<TransactionReceiptWithDecodedLogs>;

constructor (txHash: string, receiptAsync: Promise<TransactionReceiptWithDecodedLogs>) {
this.txHash = txHash;
this.receiptAsync = receiptAsync;
}
}

0 comments on commit 100fee2

Please sign in to comment.