Skip to content

Commit

Permalink
Fix event name (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
sisuresh authored Apr 28, 2023
1 parent 87a7f6e commit 6f33e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soroban-env-host/src/native_contract/token/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub(crate) fn set_authorized(
authorize: bool,
) -> Result<(), HostError> {
let mut topics = Vec::new(e)?;
topics.push(&Symbol::try_from_val(e, &"set_auth")?)?;
topics.push(&Symbol::try_from_val(e, &"set_authorized")?)?;
topics.push(&admin)?;
topics.push(&id)?;
topics.push(&read_name(&e)?)?;
Expand Down

0 comments on commit 6f33e92

Please sign in to comment.