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 4ffac28 commit 9ba7bd7Copy full SHA for 9ba7bd7
packages/std/src/exports.rs
@@ -29,6 +29,9 @@ use crate::serde::{from_json, to_json_vec};
29
use crate::types::Env;
30
use crate::{CustomMsg, Deps, DepsMut, MessageInfo};
31
32
+// These functions are used as markers for the chain to know which features this contract requires.
33
+// If the chain does not support all the required features, it will reject storing the contract.
34
+// See `docs/CAPABILITIES.md` for more details.
35
#[cfg(feature = "iterator")]
36
#[no_mangle]
37
extern "C" fn requires_iterator() -> () {}
0 commit comments