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:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user