From 4404bdb2ebec1ab7ce4d62a8c40c40bffb432bd6 Mon Sep 17 00:00:00 2001 From: u-e Date: Sat, 22 Dec 2018 13:03:12 +0300 Subject: [PATCH] fixed get pincode usage --- src/providers/steem/dsteem.js | 2 +- src/screens/editor/container/editorContainer.js | 9 +-------- src/screens/editor/screen/editorScreen.js | 4 ++-- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/src/providers/steem/dsteem.js b/src/providers/steem/dsteem.js index d690aa94d..0e2c17678 100644 --- a/src/providers/steem/dsteem.js +++ b/src/providers/steem/dsteem.js @@ -617,7 +617,6 @@ export const lookupAccounts = async (username) => { */ export const postContent = async ( account, - digitPinCode, parentAuthor, parentPermlink, permlink, @@ -628,6 +627,7 @@ export const postContent = async ( voteWeight = null, ) => { const { name: author } = account; + const digitPinCode = await getDigitPinCode(); if (account.local.authType === AUTH_TYPE.MASTER_KEY) { const opArray = [ diff --git a/src/screens/editor/container/editorContainer.js b/src/screens/editor/container/editorContainer.js index 4c33b1caf..ea4066bb2 100644 --- a/src/screens/editor/container/editorContainer.js +++ b/src/screens/editor/container/editorContainer.js @@ -8,9 +8,6 @@ import ImagePicker from 'react-native-image-crop-picker'; import { uploadImage } from '../../../providers/esteem/esteem'; import { postContent } from '../../../providers/steem/dsteem'; import { setDraftPost, getDraftPost } from '../../../realm/realm'; -import { getDigitPinCode } from '../../../providers/steem/auth'; - -// Middleware // Constants import { default as ROUTES } from '../../../constants/routeNames'; @@ -138,7 +135,7 @@ class EditorContainer extends Component { }); // For new image api // const { currentAccount } = this.props; - // const digitPinCode = await getDigitPinCode(); + // const digitPinCode = await getPinCode(); // const privateKey = decryptKey(currentAccount.local.postingKey, digitPinCode); // const sign = generateSignature(media, privateKey); // const data = new Buffer(media.data, 'base64'); @@ -214,14 +211,12 @@ class EditorContainer extends Component { const meta = extractMetadata(fields.body); const jsonMeta = makeJsonMetadata(meta, fields.tags); const permlink = generatePermlink(fields.title); - const digitPinCode = await getDigitPinCode(); const author = currentAccount.name; const options = makeOptions(author, permlink); const parentPermlink = fields.tags[0]; await postContent( currentAccount, - digitPinCode, '', parentPermlink, permlink, @@ -251,7 +246,6 @@ class EditorContainer extends Component { const jsonMeta = makeJsonMetadataReply(post.json_metadata.tags || ['esteem']); const permlink = generateReplyPermlink(post.author); - const digitPinCode = await getDigitPinCode(); const author = currentAccount.name; const options = makeOptions(author, permlink); const parentAuthor = post.author; @@ -259,7 +253,6 @@ class EditorContainer extends Component { await postContent( currentAccount, - digitPinCode, parentAuthor, parentPermlink, permlink, diff --git a/src/screens/editor/screen/editorScreen.js b/src/screens/editor/screen/editorScreen.js index f836269ba..5f633a4be 100644 --- a/src/screens/editor/screen/editorScreen.js +++ b/src/screens/editor/screen/editorScreen.js @@ -1,5 +1,5 @@ -import React, { Component, Fragment } from 'react'; -import { View, Text } from 'react-native'; +import React, { Component } from 'react'; +import { View } from 'react-native'; import { injectIntl } from 'react-intl'; // Utils