From 87ee03608320038bf3180f23b5cdd212a01dc413 Mon Sep 17 00:00:00 2001 From: monokh Date: Thu, 29 Oct 2020 18:37:23 +0000 Subject: [PATCH] Fix inject send --- src/store/actions/executeRequest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/actions/executeRequest.js b/src/store/actions/executeRequest.js index 1316dd592..c8c16309f 100644 --- a/src/store/actions/executeRequest.js +++ b/src/store/actions/executeRequest.js @@ -2,7 +2,7 @@ export const executeRequest = async ({ getters, dispatch }, { request }) => { // Send transactions through wallet managed action if (request.method === 'chain.sendTransaction') { return dispatch('sendTransaction', { - network: request.netwrok, + network: request.network, walletId: request.walletId, asset: request.asset, to: request.args[0],