Rename sig variables to signature

We'll avoid introducing three-letter terms to free up the namespace
for three-letter acronyms.

But recognize the term "sigverify", a verb, to verify a digital
signature.
This commit is contained in:
Greg Fitzgerald
2018-08-09 09:26:21 -06:00
parent 9d436fc5f8
commit 4a980568ac
10 changed files with 75 additions and 75 deletions

View File

@@ -902,7 +902,7 @@ impl Crdt {
) {
trace!("got updates {}", data.len());
// TODO we need to punish/spam resist here
// sig verify the whole update and slash anyone who sends a bad update
// sigverify the whole update and slash anyone who sends a bad update
let mut insert_total = 0;
for v in data {
insert_total += self.insert(&v);