Skip to content

Commit

Permalink
Feat/ts move calls ext (#1511)
Browse files Browse the repository at this point in the history
Rename 'brew update' option --preinstall to --auto-update

https://docs.brew.sh/Manpage#update-up-options
Homebrew/brew#13299
  • Loading branch information
chrisgitiota authored Jan 24, 2025
1 parent 0176037 commit 9e9b28f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/rust/sccache/setup-sccache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
if: inputs.os == 'macos-latest'
shell: bash
run: |
brew update --preinstall
brew update --auto-update
brew install sccache
- name: Install sccache (ubuntu-24.04)
Expand Down
2 changes: 1 addition & 1 deletion identity_iota_core/src/rebased/proposals/borrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use super::UserDrivenTx;

cfg_if::cfg_if! {
if #[cfg(target_arch = "wasm32")] {
use iota_interaction_ts::NativeTsCodeBindingWrapper as Ptb;
use iota_interaction_ts::NativeTsTransactionBuilderBindingWrapper as Ptb;
use iota_interaction_ts::error::TsSdkError as IotaInteractionError;
/// Instances of BorrowIntentFnT can be used as user-provided function to describe how
/// a borrowed assets shall be used.
Expand Down
2 changes: 1 addition & 1 deletion identity_iota_core/src/rebased/proposals/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ use super::UserDrivenTx;

cfg_if::cfg_if! {
if #[cfg(target_arch = "wasm32")] {
use iota_interaction_ts::NativeTsCodeBindingWrapper as Ptb;
use iota_interaction_ts::NativeTsTransactionBuilderBindingWrapper as Ptb;
/// Instances of ControllerIntentFnT can be used as user-provided function to describe how
/// a borrowed identity's controller capability will be used.
pub trait ControllerIntentFnT: FnOnce(&mut Ptb, &Argument) {}
Expand Down

0 comments on commit 9e9b28f

Please sign in to comment.