Skip to content

Commit 5533bd4

Browse files
authored
Merge branch 'main' into more_eth_methods
2 parents bcf2e9a + 4983571 commit 5533bd4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/did/src/mint_order_exemption.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub struct MintOrderExemptionUserData {
1313
impl MintOrderExemptionUserData {
1414
pub const MIN_INPUT_LEN: usize = 4;
1515

16-
/// Decode mint order exemption transaction data from raw trancaction input.
16+
/// Decode mint order exemption transaction data from raw transaction input.
1717
pub fn decode(tx_input: &[u8]) -> Option<Self> {
1818
if tx_input.len() < Self::MIN_INPUT_LEN {
1919
return None;

src/did/src/notify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl NotificationInput {
6262
])
6363
}
6464

65-
/// Decode notification transaction data from raw trancaction input.
65+
/// Decode notification transaction data from raw transaction input.
6666
pub fn decode(tx_input: &[u8]) -> Option<Self> {
6767
if tx_input.len() < Self::MIN_INPUT_LEN {
6868
return None;

src/evm-block-extractor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Where:
6060

6161
## Endpoints
6262

63-
Th evm-block-extracor is also a minimal version of the Ethereum JSON-RPC server which supports the following endpoints:
63+
The evm-block-extractor is also a minimal version of the Ethereum JSON-RPC server which supports the following endpoints:
6464

6565
- **eth_blockNumber**: Returns the number of most recent block.
6666
- **eth_getBlockByNumber**: Returns information about a block by block number.

0 commit comments

Comments
 (0)