Skip to content

Commit

Permalink
TEMP: Burn Tokens so contract compiles
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Aug 28, 2024
1 parent a99bf4b commit 41681a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/tokenfactory/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ pub fn execute(
NeutronMsg::submit_mint_tokens(denom, amount, env.contract.address).into()
}
ExecuteMsg::BurnTokens { denom, amount } => {
NeutronMsg::submit_burn_tokens(denom, amount).into()
// TEMP: fix so that contract compiles
NeutronMsg::submit_burn_tokens(denom, amount, Some("TEMP".to_string())).into()
}
ExecuteMsg::SetBeforeSendHook {
denom,
Expand Down

0 comments on commit 41681a5

Please sign in to comment.