From 8a664c524c1904f940250b1aa0d93643782fb489 Mon Sep 17 00:00:00 2001 From: Nicolas Gotchac Date: Tue, 28 Mar 2017 08:34:54 +0200 Subject: [PATCH] Use uniq owners for multi sig wallets (#5298) --- js/src/util/wallets.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/src/util/wallets.js b/js/src/util/wallets.js index af09dbd0725..e90f4115fd7 100644 --- a/js/src/util/wallets.js +++ b/js/src/util/wallets.js @@ -222,7 +222,8 @@ export default class WalletsUtils { } return owners; - }); + }) + .then((owners) => uniq(owners)); }); }