From 916c1ce39c5f100df48fb7a34d29cd33dffc470d Mon Sep 17 00:00:00 2001
From: Jakub Zajkowski <jakub@casperlabs.io>
Date: Tue, 3 Dec 2024 09:25:11 +0100
Subject: [PATCH] Typo fixes

---
 lib/lib.rs              | 2 +-
 src/transaction/make.rs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/lib.rs b/lib/lib.rs
index 7ca7daf..3483b08 100644
--- a/lib/lib.rs
+++ b/lib/lib.rs
@@ -279,7 +279,7 @@ pub fn sign_deploy_file<P: AsRef<Path>>(
     output.commit()
 }
 
-/// Reads a previously-saved [`TransactionV1`] from a file, cryptographically signs it, and outputs it to a file or stdout.
+/// Reads a previously-saved [`Transaction`] from a file, cryptographically signs it, and outputs it to a file or stdout.
 ///
 /// `output` specifies the output file and corresponding overwrite behaviour, or if OutputKind::Stdout,
 /// causes the `Transaction` to be printed `stdout`.
diff --git a/src/transaction/make.rs b/src/transaction/make.rs
index 411dc7f..7bb2a39 100644
--- a/src/transaction/make.rs
+++ b/src/transaction/make.rs
@@ -56,7 +56,7 @@ impl ClientCommand for MakeTransaction {
                 undelegate::NAME => undelegate::run(matches)?,
                 redelegate::NAME => redelegate::run(matches)?,
                 change_bid_public_key::NAME => change_bid_public_key::run(matches)?,
-                add_reservations::NAME => cancel_reservations::run(matches)?,
+                add_reservations::NAME => add_reservations::run(matches)?,
                 cancel_reservations::NAME => cancel_reservations::run(matches)?,
                 invocable_entity::NAME => invocable_entity::run(matches)?,
                 invocable_entity_alias::NAME => invocable_entity_alias::run(matches)?,