fix: add amount to FormattedPaymentChannel type (#989)

* fix: add amount to FormattedPaymentChannel type

* fix: ignore package-lock.json
This commit is contained in:
Kincaid O'Neil
2019-03-12 19:58:30 -04:00
committed by Elliot Lee
parent 5bf6f1849a
commit a842c380cf
2 changed files with 5 additions and 0 deletions

4
.gitignore vendored
View File

@@ -1,5 +1,9 @@
# .gitignore
# Ignore package locks other than Yarn.
package-lock.json
npm-shrinkwrap.json
# Ignore vim swap files.
*.swp

View File

@@ -4,6 +4,7 @@ import {PayChannelLedgerEntry} from '../../common/types/objects'
export type FormattedPaymentChannel = {
account: string,
amount: string,
balance: string,
publicKey: string,
destination: string,