-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add get_lockup_duration to Staking trait #4
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
src/implementations/osmosis.rs
Outdated
@@ -290,4 +296,8 @@ impl Staking<OsmosisOptions, Coin> for OsmosisSuperfluidStaking { | |||
// Rewards are automatically distributed to stakers every epoch. | |||
Ok(Response::new()) | |||
} | |||
|
|||
fn get_lockup_duration(&self) -> Result<CwDuration, CwDexError> { | |||
todo!() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
todo -> panics here, todo macro is only for prototyping. Should we handle with a custom message ( ContractError("lockup duration not implemented for osmosis") )?
Signed-off-by: Bobby <bobby@apollo.farm>
fix: update bindings dependency and remove use of OsmosisQuerier
Signed-off-by: Bobby <bobby@apollo.farm>
69fa676
to
2880d2d
Compare
No description provided.