fix: change fee amount to string

SDK has updated this amount also.
This commit is contained in:
Thomas Zarebczan 2019-05-09 14:13:55 -04:00
parent 27366c1137
commit 391286677f
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ declare type Location = {
}; };
declare type Fee = { declare type Fee = {
amount: number, // should be a string https://github.com/lbryio/lbry/issues/1576 amount: string,
currency: string, currency: string,
address: string, address: string,
}; };

2
flow-typed/Claim.js vendored
View file

@ -111,7 +111,7 @@ declare type Location = {
}; };
declare type Fee = { declare type Fee = {
amount: number, // should be a string https://github.com/lbryio/lbry/issues/1576 amount: string,
currency: string, currency: string,
address: string, address: string,
}; };