Merge pull request #99 from lbryio/chainquery-fix

Added the breaking change of #93. Added the change, do not merge unti…
This commit is contained in:
Mark 2018-08-12 13:53:24 -04:00 committed by GitHub
commit aa4558bb57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,7 +166,7 @@ function getClaimsSince (time) {
// `vout ` +
`FROM claim c ` +
`LEFT JOIN claim p on p.claim_id = c.publisher_id ` +
`WHERE c.modified >='` + time + `'`;
`WHERE c.modified_at >='` + time + `'`;
// Outputs full query to console for copy/paste into chainquery (debugging)
// console.log(query);
rp(`https://chainquery.lbry.io/api/sql?query=` + query)