From afb690dd95978243cd841cf2018b08219778ca47 Mon Sep 17 00:00:00 2001 From: Jack Mallers Date: Sat, 23 Jun 2018 19:59:44 -0500 Subject: [PATCH] fix(p2pkh): generate np2wkh instead of p2pkh --- app/reducers/transaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/reducers/transaction.js b/app/reducers/transaction.js index 25141eb3..42798639 100644 --- a/app/reducers/transaction.js +++ b/app/reducers/transaction.js @@ -115,7 +115,7 @@ export const newTransaction = (event, { transaction }) => dispatch => { showNotification(notifTitle, notifBody) // Generate a new address - dispatch(newAddress('p2pkh')) + dispatch(newAddress('np2wkh')) } // ------------------------------------