Skip to content

Commit

Permalink
fix args for marker contract
Browse files Browse the repository at this point in the history
  • Loading branch information
kwtalley committed Mar 7, 2024
1 parent 6243eeb commit bca2088
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/marker/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ mod tests {
required_attributes: vec![],
usd_cents: 0,
volume: 0,
usd_mills: 0,
}
.try_into()
.unwrap();
.into();

// Create marker execute message
let msg = ExecuteMsg::Create {
Expand Down Expand Up @@ -378,9 +378,9 @@ mod tests {
required_attributes: vec![],
usd_cents: 0,
volume: 0,
usd_mills: 0,
}
.try_into()
.unwrap();
.into();

// Create marker execute message
let msg = ExecuteMsg::Create {
Expand Down
1 change: 1 addition & 0 deletions contracts/marker/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ pub fn create_marker<S: Into<String>>(
required_attributes: vec![],
usd_cents: 0,
volume: 0,
usd_mills: 0,
}
.into())
}
Expand Down

0 comments on commit bca2088

Please sign in to comment.