Skip to content

Commit

Permalink
Merge branch 'master' into ens/sdk-1940-dfx-new-streamline-output
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang authored Jan 22, 2025
2 parents 9c7d3e5 + 8221db5 commit e6863cb
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 140 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,19 @@ and reserves that much space for the ValueSerializer's buffer.

### Motoko

Updated Motoko to [0.13.5](https://github.com/dfinity/motoko/releases/tag/0.13.5)
Updated Motoko to [0.13.6](https://github.com/dfinity/motoko/releases/tag/0.13.6)

### Replica

Updated replica to elected commit 3e24396441e4c7380928d4e8b4ccff7de77d0e7e.
Updated replica to elected commit 233c1ee2ef68c1c8800b8151b2b9f38e17b8440a.
This incorporates the following executed proposals:

- [134900](https://dashboard.internetcomputer.org/proposal/134900)
- [134773](https://dashboard.internetcomputer.org/proposal/134773)
- [134684](https://dashboard.internetcomputer.org/proposal/134684)
- [134663](https://dashboard.internetcomputer.org/proposal/134663)
- [134608](https://dashboard.internetcomputer.org/proposal/134608)
- [134609](https://dashboard.internetcomputer.org/proposal/134609)
- [134497](https://dashboard.internetcomputer.org/proposal/134497)
- [134408](https://dashboard.internetcomputer.org/proposal/134408)
- [134337](https://dashboard.internetcomputer.org/proposal/134337)
Expand Down
19 changes: 10 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions e2e/tests-dfx/wallet.bash
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,22 @@ teardown() {
assert_command dfx canister call "${CHILD_ID}" wallet_balance '()'
}

@test "forward canister_info call through wallet" {
dfx_new
install_asset identity
dfx_start
WALLET=$(dfx identity get-wallet)
assert_command dfx canister create --all --wallet default
assert_command dfx build
assert_command dfx canister install --all --wallet default

assert_command dfx canister call aaaaa-aa canister_info --wallet default \
"(record { canister_id= principal \"$(dfx canister id e2e_project_backend)\"; num_requested_changes= opt 20})"
assert_contains "$WALLET"
assert_contains "$(dfx identity get-principal)"
assert_contains "3_862_312_591 = 2 : nat64;"
}

@test "forward user call through wallet" {
dfx_new
install_asset identity
Expand Down
Loading

0 comments on commit e6863cb

Please sign in to comment.