Skip to content

Commit b6ecbea

Browse files
Merge branch 'main' into trait-docs
2 parents 5b48409 + e691ca4 commit b6ecbea

File tree

57 files changed

+4631
-279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+4631
-279
lines changed

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

soroban-sdk-macros/src/derive_client.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,11 @@ pub fn derive_client_impl(crate_path: &Path, name: &str, fns: &[syn_ext::Fn]) ->
304304
self.env.mock_auths(mock_auths);
305305
}
306306
if self.mock_all_auths {
307-
self.env.mock_all_auths();
307+
if self.allow_non_root_auth {
308+
self.env.mock_all_auths_allowing_non_root_auth();
309+
} else {
310+
self.env.mock_all_auths();
311+
}
308312
}
309313
}
310314
use #crate_path::{IntoVal,FromVal};

0 commit comments

Comments
 (0)