From 47b48b41e672dd0e360e66b9ae909e0a636a2872 Mon Sep 17 00:00:00 2001 From: danidrasovean <112827213+danidrasovean@users.noreply.github.com> Date: Wed, 4 Mar 2026 13:01:10 +0200 Subject: [PATCH] Fix username after upgrade to Ubuntu 24 --- README.md | 4 ++-- src/smart-contracts-rust/.devcontainer/devcontainer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 043265e..dcc466b 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Deploy a previously-built smart contract on Devnet: ${RUN} ${IMAGE} mxpy contract deploy \ --bytecode /data/mx-contracts-rs/contracts/adder/output/adder.wasm \ --arguments 0 \ - --pem /home/developer/multiversx-sdk/testwallets/latest/users/alice.pem \ + --pem /home/ubuntu/multiversx-sdk/testwallets/latest/users/alice.pem \ --recall-nonce \ --gas-limit 5000000 \ --chain D \ @@ -74,7 +74,7 @@ ${RUN} ${IMAGE} mxpy contract call \ erd1qqqqqqqqqqqqqpgqr3clh6ghpww5fc4uhwh2amsseuvecswzd8ssxu68s3 \ --function "add" \ --arguments 42 \ - --pem /home/developer/multiversx-sdk/testwallets/latest/users/alice.pem \ + --pem /home/ubuntu/multiversx-sdk/testwallets/latest/users/alice.pem \ --recall-nonce \ --gas-limit 5000000 \ --chain D \ diff --git a/src/smart-contracts-rust/.devcontainer/devcontainer.json b/src/smart-contracts-rust/.devcontainer/devcontainer.json index 2592fc1..4ade099 100644 --- a/src/smart-contracts-rust/.devcontainer/devcontainer.json +++ b/src/smart-contracts-rust/.devcontainer/devcontainer.json @@ -34,5 +34,5 @@ } }, "containerEnv": {}, - "remoteUser": "developer" + "remoteUser": "ubuntu" }