From 55da48c31c6205126ba10ce8a1b2d5efe74a4a31 Mon Sep 17 00:00:00 2001 From: Gradey Cullins Date: Thu, 13 May 2021 14:40:50 -0600 Subject: [PATCH] Remove redundant and erroneous function call --- docs/token-contracts/fa12/2-fa12-ligo.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/token-contracts/fa12/2-fa12-ligo.md b/docs/token-contracts/fa12/2-fa12-ligo.md index 3e8cfcb..d3dbb18 100644 --- a/docs/token-contracts/fa12/2-fa12-ligo.md +++ b/docs/token-contracts/fa12/2-fa12-ligo.md @@ -94,14 +94,13 @@ convenient for development and testing, but use in production is discouraged. Use a real wallet or HSM backed remote signer for production. ```js -const { InMemorySigner, importKey } = require("@taquito/signer") +const { importKey } = require("@taquito/signer") const fs = require("fs") const { email, password, mnemonic, secret } = JSON.parse( fs.readFileSync("./faucet.json").toString() ) const Tezos = new TezosToolkit("https://api.tez.ie/rpc/edonet") -Tezos.setProvider({ signer: new InMemorySigner() }) importKey(Tezos, email, password, mnemonic.join(" "), secret) ```