You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It doesn't look as if ChainTree.resolve sets remainderPath if a query would resolve to a partial path.
For example
await community.playTransactions(tree, [
setDataTransaction('name', 'Name'),
]);
const result = await tree.resolve(['tree', 'data', 'name', 'child']);
// result.remainderPath should be ['child'], but will be ['tree', 'data', 'name', 'child'].
The text was updated successfully, but these errors were encountered:
It doesn't look as if
ChainTree.resolve
sets remainderPath if a query would resolve to a partial path.For example
The text was updated successfully, but these errors were encountered: