diff --git a/forum-network/public/validation-pool-test.js b/forum-network/public/validation-pool-test.js index 7144550..898062a 100644 --- a/forum-network/public/validation-pool-test.js +++ b/forum-network/public/validation-pool-test.js @@ -16,9 +16,11 @@ const updateDisplayValues = async () => { member1.setValue('rep', bench.reputations.getTokens(member1.reputationPublicKey)); member2.setValue('rep', bench.reputations.getTokens(member2.reputationPublicKey)); bench.setValue('total rep', bench.getTotalReputation()); - bench.setValue('available rep', bench.getTotalAvailableReputation()); - bench.setValue('active rep', bench.getTotalActiveReputation()); - bench.setValue('active available rep', bench.getTotalActiveAvailableReputation()); + // With params.lockingTimeExponent = 0 and params.activeVoterThreshold = null, + // these next 3 propetries are all equal to total rep + // bench.setValue('available rep', bench.getTotalAvailableReputation()); + // bench.setValue('active rep', bench.getTotalActiveReputation()); + // bench.setValue('active available rep', bench.getTotalActiveAvailableReputation()); await scene.renderSequenceDiagram(); };