Skip to content

Commit f82073f

Browse files
committed
feat(law): add broken flag in state
1 parent f31e905 commit f82073f

File tree

2 files changed

+26
-14
lines changed

2 files changed

+26
-14
lines changed

contracts/cw-law-stone/src/contract.rs

+19-13
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pub mod query {
7171
use crate::state::PROGRAM;
7272

7373
pub fn program(deps: Deps<'_, LogicCustomQuery>) -> StdResult<ProgramResponse> {
74-
let program = PROGRAM.load(deps.storage)?;
74+
let program = PROGRAM.load(deps.storage)?.law;
7575
Ok(ProgramResponse::from(program))
7676
}
7777
}
@@ -91,7 +91,7 @@ pub fn reply(
9191
pub mod reply {
9292
use super::*;
9393
use crate::helper::{ask_response_to_objects, get_reply_event_attribute};
94-
use crate::state::{Object, DEPENDENCIES, PROGRAM};
94+
use crate::state::{LawStone, Object, DEPENDENCIES, PROGRAM};
9595
use url::Url;
9696

9797
pub fn store_program_reply(
@@ -113,25 +113,28 @@ pub mod reply {
113113
))
114114
})
115115
})
116-
.map(|obj_id| Object {
117-
object_id: obj_id,
118-
storage_address: context.clone(),
116+
.map(|obj_id| LawStone {
117+
broken: false,
118+
law: Object {
119+
object_id: obj_id,
120+
storage_address: context.clone(),
121+
},
119122
})
120-
.and_then(|program| -> Result<Vec<SubMsg>, ContractError> {
123+
.and_then(|stone| -> Result<Vec<SubMsg>, ContractError> {
121124
PROGRAM
122-
.save(deps.storage, &program)
125+
.save(deps.storage, &stone)
123126
.map_err(ContractError::from)?;
124127

125128
// Clean instantiate context
126129
INSTANTIATE_CONTEXT.remove(deps.storage);
127130

128-
let req = build_source_files_query(program.clone())?.into();
131+
let req = build_source_files_query(stone.law.clone())?.into();
129132
let res = deps.querier.query(&req).map_err(ContractError::from)?;
130133

131134
let objects = ask_response_to_objects(res, "Files".to_string())?;
132135
let mut msgs = Vec::with_capacity(objects.len());
133136
for obj in objects {
134-
if obj.object_id == program.object_id {
137+
if obj.object_id == stone.object_id {
135138
continue;
136139
}
137140
DEPENDENCIES.save(deps.storage, obj.object_id.as_str(), &obj)?;
@@ -169,7 +172,7 @@ pub mod reply {
169172
mod tests {
170173
use super::*;
171174
use crate::msg::ProgramResponse;
172-
use crate::state::{Object, DEPENDENCIES, PROGRAM};
175+
use crate::state::{LawStone, Object, DEPENDENCIES, PROGRAM};
173176
use cosmwasm_std::testing::{mock_env, mock_info, MockQuerierCustomHandlerResult};
174177
use cosmwasm_std::{
175178
from_binary, to_binary, CosmosMsg, Event, Order, SubMsgResponse, SubMsgResult, SystemError,
@@ -281,9 +284,12 @@ mod tests {
281284
PROGRAM
282285
.save(
283286
deps.as_mut().storage,
284-
&Object {
285-
object_id: object_id.clone(),
286-
storage_address: storage_addr.clone(),
287+
&LawStone {
288+
broken: false,
289+
law: Object {
290+
object_id: object_id.clone(),
291+
storage_address: storage_addr.clone(),
292+
},
287293
},
288294
)
289295
.unwrap();

contracts/cw-law-stone/src/state.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ use url::Url;
1313
/// State to store context during contract instantiation
1414
pub const INSTANTIATE_CONTEXT: Item<'_, String> = Item::new("instantiate");
1515

16+
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
17+
pub struct LawStone {
18+
pub broken: bool,
19+
pub law: Object,
20+
}
21+
1622
/// Represent a link to an Object stored in the `cw-storage` contract.
1723
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
1824
pub struct Object {
@@ -96,7 +102,7 @@ impl TryInto<Url> for Object {
96102
}
97103
}
98104

99-
pub const PROGRAM: Item<'_, Object> = Item::new("program");
105+
pub const PROGRAM: Item<'_, LawStone> = Item::new("program");
100106

101107
pub const DEPENDENCIES: Map<'_, &str, Object> = Map::new("dependencies");
102108

0 commit comments

Comments
 (0)