Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiaszCudnik committed Jan 29, 2019
1 parent 7754191 commit e3fd152
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/stores/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@ export class Transaction {
serialize(): Partial<Transaction> {
const data: Partial<Transaction> = {};
for (const field in this) {
if (!this.hasOwnProperty(field)) {
continue
}
const skipFields = [
'wallet',
'rawFields',
Expand Down

0 comments on commit e3fd152

Please sign in to comment.