Skip to content

Commit

Permalink
transaction: remove unused field
Browse files Browse the repository at this point in the history
  • Loading branch information
tammo committed Nov 13, 2020
1 parent 95ac166 commit 6d6f99d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/Transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ export class Transaction {
*/
publicSig: SigPublicKey;

/**
* Proof that a certain amount of work was burned.
*/
work: string;

/**
* Network slot when the transaction was accepted.
*/
Expand All @@ -44,6 +39,6 @@ export class Transaction {
return false;
}

return this.blocks.some(block => block.type === BlockType.OPENING && !block.prev);
return this.blocks.some((block) => block.type === BlockType.OPENING && !block.prev);
}
}

0 comments on commit 6d6f99d

Please sign in to comment.