Skip to content

Commit f91b832

Browse files
committed
Fix typos
1 parent 82c9fe9 commit f91b832

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

crates/sp-domains-fraud-proof/src/storage_proof.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub enum VerificationError {
4545
RuntimeRegistryStorageProof(StorageProofVerificationError),
4646
DynamicCostOfStorageStorageProof(StorageProofVerificationError),
4747
DigestStorageProof(StorageProofVerificationError),
48-
BlockFessStorageProof(StorageProofVerificationError),
48+
BlockFeesStorageProof(StorageProofVerificationError),
4949
TransfersStorageProof(StorageProofVerificationError),
5050
ExtrinsicStorageProof(StorageProofVerificationError),
5151
DomainSudoCallStorageProof(StorageProofVerificationError),

crates/sp-domains-fraud-proof/src/verification.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ where
381381
)
382382
.map_err(|err| {
383383
VerificationError::StorageProof(
384-
storage_proof::VerificationError::BlockFessStorageProof(err),
384+
storage_proof::VerificationError::BlockFeesStorageProof(err),
385385
)
386386
})?;
387387

domains/client/domain-operator/src/fraud_proof.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ where
380380
self.maybe_generate_domain_runtime_code_proof_for_receipt(domain_id, local_receipt)?;
381381

382382
let maybe_runtime_id =
383-
self.is_domain_runtime_updraded_at(domain_id, consensus_block_hash)?;
383+
self.is_domain_runtime_upgraded_at(domain_id, consensus_block_hash)?;
384384

385385
let invalid_inherent_extrinsic_proof = InvalidInherentExtrinsicProof::generate(
386386
&self.storage_key_provider,
@@ -412,7 +412,7 @@ where
412412
Ok(invalid_domain_extrinsics_root_proof)
413413
}
414414

415-
pub fn is_domain_runtime_updraded_at(
415+
pub fn is_domain_runtime_upgraded_at(
416416
&self,
417417
domain_id: DomainId,
418418
at: CBlock::Hash,

0 commit comments

Comments
 (0)