Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
chore: fix denom issue in stake_request
Browse files Browse the repository at this point in the history
  • Loading branch information
kenta-elys committed Dec 18, 2023
1 parent e2842bf commit 35ae9c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/action/execute/stake_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub fn stake_request(
});
}

let msg = ElysMsg::stake_token(address, Int128::from(amount), asset, validator_address);
let msg = ElysMsg::stake_token(address, Int128::from(amount), real_denom.clone(), validator_address);
let resp = Response::new().add_message(msg);
Ok(resp)
}

0 comments on commit 35ae9c7

Please sign in to comment.