Skip to content

Commit 7028216

Browse files
committed
actualizacion workflow
1 parent 644c5f0 commit 7028216

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/node.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ jobs:
5656
--force
5757
5858
- name: Install stellar-scaffold-cli
59-
run: |
60-
source $HOME/.cargo/env
61-
if ! command -v stellar-scaffold &> /dev/null; then
62-
cargo install stellar-scaffold-cli --force
63-
fi
59+
run: |
60+
source $HOME/.cargo/env
61+
if ! command -v stellar-scaffold &> /dev/null; then
62+
cargo install stellar-scaffold-cli --force
63+
fi
6464
6565
- name: Verify installations
6666
run: |

contracts/rent-a-car/src/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ impl RentACarContractTrait for RentACarContract {
5555
write_car(env, &owner, &car);
5656
Ok(())
5757
}
58-
58+
//funcion get_car_status
5959
fn get_car_status(env: &Env, owner: Address) -> Result<CarStatus, Error> {
6060
if !has_car(env, &owner) {
6161
return Err(Error::CarNotFound);

0 commit comments

Comments
 (0)