Added the breaking change of #93. Added the change, do not merge until the chainquery change has been merged and deployed.

This commit is contained in:
filipnyquist 2018-07-30 15:19:29 +02:00
parent 297bad29b4
commit 6b3269bfe3

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)