Merge pull request #2571 from lbryio/valid_channel_signatures_rename

claim_search --valid_channel_signatures was renamed to --valid_channel_signature
This commit is contained in:
Sean Yesmunt 2019-06-25 02:42:26 -04:00 committed by GitHub
commit ddcaed9af7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -296,7 +296,7 @@ export function doFetchClaimsByChannel(uri: string, page: number = 1, pageSize:
channel: uri,
page,
page_size: pageSize,
valid_channel_signatures: true,
valid_channel_signature: true,
order_by: ['release_time'],
}).then(result => {
const { items: claimsInChannel, page: returnedPage } = result;

View file

@ -206,7 +206,7 @@ export const doCheckSubscription = (subscriptionUri: string, shouldNotify?: bool
// We may be duplicating calls here. Can this logic be baked into doFetchClaimsByChannel?
Lbry.claim_search({
channel: subscriptionUri,
valid_channel_signatures: true,
valid_channel_signature: true,
order_by: ['release_time'],
page: 1,
page_size: PAGE_SIZE,