From e5365e96b8e082835824f5b72a45366a2f0f829f Mon Sep 17 00:00:00 2001 From: Moritz Fuller Date: Mon, 6 May 2024 09:30:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=E2=80=87removed=20unnecessary=20co?= =?UTF-8?q?de?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- motoko/token_transfer_from/README.md | 2 -- .../token_transfer_from/src/token_transfer_from_backend/main.mo | 2 -- 2 files changed, 4 deletions(-) diff --git a/motoko/token_transfer_from/README.md b/motoko/token_transfer_from/README.md index 475cd5bf2..79bbbed2e 100644 --- a/motoko/token_transfer_from/README.md +++ b/motoko/token_transfer_from/README.md @@ -178,8 +178,6 @@ Replace the contents of the `src/token_transfer_from_backend/main.mo` file with import Icrc1Ledger "canister:icrc1_ledger_canister"; import Debug "mo:base/Debug"; import Result "mo:base/Result"; -import Option "mo:base/Option"; -import Blob "mo:base/Blob"; import Error "mo:base/Error"; actor { diff --git a/motoko/token_transfer_from/src/token_transfer_from_backend/main.mo b/motoko/token_transfer_from/src/token_transfer_from_backend/main.mo index fd37c8e35..ab2330bc2 100644 --- a/motoko/token_transfer_from/src/token_transfer_from_backend/main.mo +++ b/motoko/token_transfer_from/src/token_transfer_from_backend/main.mo @@ -1,8 +1,6 @@ import Icrc1Ledger "canister:icrc1_ledger_canister"; import Debug "mo:base/Debug"; import Result "mo:base/Result"; -import Option "mo:base/Option"; -import Blob "mo:base/Blob"; import Error "mo:base/Error"; actor {