We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4009f5d commit a4e6780Copy full SHA for a4e6780
src/data/collections/causal/CausalSet.ts
@@ -255,7 +255,7 @@ class CausalSet<T> extends BaseCausalCollection<T> implements CausalCollection<T
255
this.setCurrentPrevOpsTo(addOp);
256
257
if (!(await auth.attempt(addOp))) {
258
- throw new AuthError('Cannot authorize addition operation on CausalSet ' + this.hash() + ', author is: ' + author?.hash());;
+ throw new AuthError('Cannot authorize addition operation on CausalSet ' + this.hash() + ', author is: ' + author?.hash());
259
}
260
261
return this.applyNewOp(addOp).then(() => true);
0 commit comments