put getFieldRoots in manifest

This commit is contained in:
Andre Staltz 2023-04-28 15:31:08 +03:00
parent 52b7fa4664
commit d17f2ebc70
No known key found for this signature in database
GPG Key ID: 9EDE23EA7E8A4890
1 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@ module.exports = {
manifest: { manifest: {
update: 'async', update: 'async',
get: 'sync', get: 'sync',
getFieldRoots: 'sync',
squeeze: 'async', squeeze: 'async',
}, },
init(peer, config) { init(peer, config) {
@ -267,9 +268,9 @@ module.exports = {
return { return {
update, update,
get, get,
getFieldRoots,
squeeze, squeeze,
getFieldRoots,
_squeezePotential, _squeezePotential,
} }
}, },