Skip to content

Commit

Permalink
Merge branch 'master' into ic-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswanson-dfinity authored Sep 19, 2023
2 parents 23413f4 + ae5b70e commit c2a1e1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ Background: In order to determine whether to start a project-specific network or

If `dfx start` is starting the shared network from within a dfx project, and that dfx.json contains settings in the `defaults` key for `bitcoin`, `replica`, or `canister_http`, then `dfx start` will warn that it is ignoring those settings. It will also describe how to define equivalent settings in networks.json.

### fix: dfx canister call --wallet no longer passes the parameter twice

The parameter was erroneously passed twice. Now it is passed only once.

## Dependencies

### Frontend canister
Expand Down
1 change: 0 additions & 1 deletion src/dfx/src/commands/canister/call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ async fn do_wallet_call(wallet: &WalletCanister<'_>, args: &CallIn) -> DfxResult
wallet.update_("wallet_call").with_arg(args64)
};
let (result,): (Result<CallResult, String>,) = builder
.with_arg(args)
.build()
.call_and_wait()
.await
Expand Down

0 comments on commit c2a1e1e

Please sign in to comment.