fixed typo

This commit is contained in:
alessandrokonrad 2022-09-13 19:20:18 +02:00 committed by rvcas
parent 2bd46f90bb
commit fc92c40c3c
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
1 changed files with 1 additions and 1 deletions

View File

@ -1196,7 +1196,7 @@ fn get_execution_purpose(
let script = lookup_table.scripts.get(&script_hash).unwrap(); let script = lookup_table.scripts.get(&script_hash).unwrap();
ExecutionPurpose::NoDatum(script.clone()) ExecutionPurpose::NoDatum(script.clone())
} }
_ => unreachable!("This is impossible. Only stake deregistration and stake delegation are valid a script purposes."), _ => unreachable!("This is impossible. Only stake deregistration and stake delegation are valid script purposes."),
}, },
} }
} }