Cleanup: make 'verified' qualifier implicit

History: Qualifying the method names with 'verified' was done to
distinguish them from methods that first did signature verification.
After we moved all signature verication to SigVerifyStage, we removed
those methods from Bank, leaving only the 'verified' ones.

This patch removes the word 'verified' from all method names, since
it is now implied by any code running after SigVerifyStage.
This commit is contained in:
Greg Fitzgerald
2018-05-29 09:52:40 -06:00
parent 86a50ae9e1
commit 52145caf7e
4 changed files with 42 additions and 42 deletions

View File

@@ -24,9 +24,9 @@ impl ReplicateStage {
let timer = Duration::new(1, 0);
let blobs = verified_receiver.recv_timeout(timer)?;
let entries = ledger::reconstruct_entries_from_blobs(&blobs);
let res = bank.process_verified_entries(entries);
let res = bank.process_entries(entries);
if res.is_err() {
error!("process_verified_entries {} {:?}", blobs.len(), res);
error!("process_entries {} {:?}", blobs.len(), res);
}
res?;
for blob in blobs {