bumpSumUnbounded function

BumpFn bumpSumUnbounded()

Common bump functions Adds the incoming value to the peer's score.

Implementation

/// Adds the incoming value to the peer's score.
BumpFn bumpSumUnbounded() {
  return (value, delta) => value.value + delta;
}