Add lbry.getClaimInfo() stub

This commit is contained in:
Alex Liebowitz 2016-07-28 18:02:24 -04:00
parent aff6308846
commit 8a62bbf808

View file

@ -111,6 +111,10 @@ lbry.getStream = function(name, callback) {
lbry.call('get', { 'name': name }, callback);
};
lbry.getClaimInfo = function(name, callback) {
lbry.call('get_claim_info', { name: name }, callback);
}
lbry.getFileStatus = function(name, callback) {
lbry.call('get_lbry_file', { 'name': name }, callback);
}