We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3191b commit c9d5295Copy full SHA for c9d5295
stackslib/src/net/api/tests/getclaritymetadata.rs
@@ -263,6 +263,16 @@ fn test_try_make_response() {
263
);
264
requests.push(request);
265
266
+ // query existing contract size metadata
267
+ let request = StacksHttpRequest::new_getclaritymetadata(
268
+ addr.into(),
269
+ StacksAddress::from_string("ST2DS4MSWSGJ3W9FBC6BVT0Y92S345HY8N3T6AV7R").unwrap(),
270
+ "hello-world".try_into().unwrap(),
271
+ "vm-metadata::9::contract-size".to_string(),
272
+ TipRequest::UseLatestAnchoredTip,
273
+ );
274
+ requests.push(request);
275
+
276
let mut responses = test_rpc(function_name!(), requests);
277
278
// contract size metadata
0 commit comments