Merge pull request #143 from lbryio/amountstring

fix: change fee amount to string
This commit is contained in:
Sean Yesmunt 2019-05-10 01:19:35 -04:00 committed by GitHub
commit 8adcd00e65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

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

2
flow-typed/Claim.js vendored
View file

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