diff --git a/convex-core/src/main/java/convex/core/cpos/Order.java b/convex-core/src/main/java/convex/core/cpos/Order.java index a7852de4e..ea9992c15 100644 --- a/convex-core/src/main/java/convex/core/cpos/Order.java +++ b/convex-core/src/main/java/convex/core/cpos/Order.java @@ -206,6 +206,7 @@ public Order append(SignedData block) { /** * Updates blocks in this Order. Returns the same Order if the blocks are identical. + * Constrains consensus points as required to remain valid * @param newBlocks New blocks to use * @return Updated Order, or the same order if unchanged */ @@ -305,7 +306,7 @@ public ACell get(Keyword key) { */ public boolean consensusEquals(Order b) { if (b==null) return false; // definitely not equal - for (int i=1; i