From 9f18a88e0b70ffaaee10cc0e078f0e30548008db Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Tue, 26 Nov 2024 08:14:22 +0100 Subject: [PATCH] fix typos --- contracts/crypto-verify/src/ethereum.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/crypto-verify/src/ethereum.rs b/contracts/crypto-verify/src/ethereum.rs index f6958a0230..3fedc2a992 100644 --- a/contracts/crypto-verify/src/ethereum.rs +++ b/contracts/crypto-verify/src/ethereum.rs @@ -63,7 +63,7 @@ fn serialize_unsigned_transaction( /// Get the recovery param from the value `v` when no chain ID for replay protection is used. /// -/// This is needed for chain-agnostig aignatures like signed text. +/// This is needed for chain-agnostic signatures like signed text. /// /// See [EIP-155] for how `v` is composed. /// @@ -78,7 +78,7 @@ pub fn get_recovery_param(v: u8) -> StdResult { /// Get the recovery param from the value `v` when a chain ID for replay protection is used. /// -/// This is needed for chain-agnostig aignatures like signed text. +/// This is needed for chain-agnostic signatures like signed text. /// /// See [EIP-155] for how `v` is composed. ///