@@ -71,7 +71,7 @@ pub mod query {
71
71
use crate :: state:: PROGRAM ;
72
72
73
73
pub fn program ( deps : Deps < ' _ , LogicCustomQuery > ) -> StdResult < ProgramResponse > {
74
- let program = PROGRAM . load ( deps. storage ) ?;
74
+ let program = PROGRAM . load ( deps. storage ) ?. law ;
75
75
Ok ( ProgramResponse :: from ( program) )
76
76
}
77
77
}
@@ -91,7 +91,7 @@ pub fn reply(
91
91
pub mod reply {
92
92
use super :: * ;
93
93
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 } ;
95
95
use url:: Url ;
96
96
97
97
pub fn store_program_reply (
@@ -113,25 +113,28 @@ pub mod reply {
113
113
) )
114
114
} )
115
115
} )
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
+ } ,
119
122
} )
120
- . and_then ( |program | -> Result < Vec < SubMsg > , ContractError > {
123
+ . and_then ( |stone | -> Result < Vec < SubMsg > , ContractError > {
121
124
PROGRAM
122
- . save ( deps. storage , & program )
125
+ . save ( deps. storage , & stone )
123
126
. map_err ( ContractError :: from) ?;
124
127
125
128
// Clean instantiate context
126
129
INSTANTIATE_CONTEXT . remove ( deps. storage ) ;
127
130
128
- let req = build_source_files_query ( program . clone ( ) ) ?. into ( ) ;
131
+ let req = build_source_files_query ( stone . law . clone ( ) ) ?. into ( ) ;
129
132
let res = deps. querier . query ( & req) . map_err ( ContractError :: from) ?;
130
133
131
134
let objects = ask_response_to_objects ( res, "Files" . to_string ( ) ) ?;
132
135
let mut msgs = Vec :: with_capacity ( objects. len ( ) ) ;
133
136
for obj in objects {
134
- if obj. object_id == program . object_id {
137
+ if obj. object_id == stone . object_id {
135
138
continue ;
136
139
}
137
140
DEPENDENCIES . save ( deps. storage , obj. object_id . as_str ( ) , & obj) ?;
@@ -169,7 +172,7 @@ pub mod reply {
169
172
mod tests {
170
173
use super :: * ;
171
174
use crate :: msg:: ProgramResponse ;
172
- use crate :: state:: { Object , DEPENDENCIES , PROGRAM } ;
175
+ use crate :: state:: { LawStone , Object , DEPENDENCIES , PROGRAM } ;
173
176
use cosmwasm_std:: testing:: { mock_env, mock_info, MockQuerierCustomHandlerResult } ;
174
177
use cosmwasm_std:: {
175
178
from_binary, to_binary, CosmosMsg , Event , Order , SubMsgResponse , SubMsgResult , SystemError ,
@@ -281,9 +284,12 @@ mod tests {
281
284
PROGRAM
282
285
. save (
283
286
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
+ } ,
287
293
} ,
288
294
)
289
295
. unwrap ( ) ;
0 commit comments