Skip to content

Commit

Permalink
Small doc nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed Sep 9, 2024
1 parent 9303a65 commit 92b3c83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cw-orch-daemon/examples/hd_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub fn main() -> anyhow::Result<()> {
pretty_env_logger::init(); // Used to log contract and chain interactions

let network = networks::LOCAL_JUNO;
// There is no need to register a mnemonic to use this daemon querier
// The mnemonic is read from environment variables automatically, no need to specify in this builders
let sender = CosmosOptions::default()
.hd_index(5)
.authz_granter(&Addr::unchecked(LOCAL_JUNO_GRANTER));
Expand Down
2 changes: 1 addition & 1 deletion cw-orch-daemon/examples/querier-daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub fn main() -> anyhow::Result<()> {
pretty_env_logger::init(); // Used to log contract and chain interactions

let network = networks::LOCAL_JUNO;
// There is no need to register a mnemonic to use this daemon querier
// QueryOnlyDaemon doesn't need a mnemonic to function
let chain: QueryOnlyDaemon = QueryOnlyDaemon::builder(network).build_sender(())?;

let balances = chain
Expand Down

0 comments on commit 92b3c83

Please sign in to comment.