File tree 3 files changed +4
-4
lines changed
crates/sp-domains-fraud-proof/src
domains/client/domain-operator/src
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ pub enum VerificationError {
45
45
RuntimeRegistryStorageProof ( StorageProofVerificationError ) ,
46
46
DynamicCostOfStorageStorageProof ( StorageProofVerificationError ) ,
47
47
DigestStorageProof ( StorageProofVerificationError ) ,
48
- BlockFessStorageProof ( StorageProofVerificationError ) ,
48
+ BlockFeesStorageProof ( StorageProofVerificationError ) ,
49
49
TransfersStorageProof ( StorageProofVerificationError ) ,
50
50
ExtrinsicStorageProof ( StorageProofVerificationError ) ,
51
51
DomainSudoCallStorageProof ( StorageProofVerificationError ) ,
Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ where
381
381
)
382
382
. map_err ( |err| {
383
383
VerificationError :: StorageProof (
384
- storage_proof:: VerificationError :: BlockFessStorageProof ( err) ,
384
+ storage_proof:: VerificationError :: BlockFeesStorageProof ( err) ,
385
385
)
386
386
} ) ?;
387
387
Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ where
380
380
self . maybe_generate_domain_runtime_code_proof_for_receipt ( domain_id, local_receipt) ?;
381
381
382
382
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) ?;
384
384
385
385
let invalid_inherent_extrinsic_proof = InvalidInherentExtrinsicProof :: generate (
386
386
& self . storage_key_provider ,
@@ -412,7 +412,7 @@ where
412
412
Ok ( invalid_domain_extrinsics_root_proof)
413
413
}
414
414
415
- pub fn is_domain_runtime_updraded_at (
415
+ pub fn is_domain_runtime_upgraded_at (
416
416
& self ,
417
417
domain_id : DomainId ,
418
418
at : CBlock :: Hash ,
You can’t perform that action at this time.
0 commit comments