Fix spelling of signature

This commit is contained in:
Stephen Akridge 2018-06-28 15:59:32 -07:00 committed by sakridge
parent 63cfbb9497
commit d28536d76e
1 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ pub enum BankError {
/// The bank has seen `Signature` before. This can occur under normal operation
/// when a UDP packet is duplicated, as a user error from a client not updating
/// its `last_id`, or as a double-spend attack.
DuplicateSiganture(Signature),
DuplicateSignature(Signature),
/// The bank has not seen the given `last_id` or the transaction is too old and
/// the `last_id` has been discarded.
@ -135,7 +135,7 @@ impl Bank {
/// Store the given signature. The bank will reject any transaction with the same signature.
fn reserve_signature(signatures: &mut HashSet<Signature>, sig: &Signature) -> Result<()> {
if let Some(sig) = signatures.get(sig) {
return Err(BankError::DuplicateSiganture(*sig));
return Err(BankError::DuplicateSignature(*sig));
}
signatures.insert(*sig);
Ok(())
@ -600,7 +600,7 @@ mod tests {
);
assert_eq!(
bank.reserve_signature_with_last_id(&sig, &mint.last_id()),
Err(BankError::DuplicateSiganture(sig))
Err(BankError::DuplicateSignature(sig))
);
}