Use uniq owners for multi sig wallets (#5298)

This commit is contained in:
Nicolas Gotchac 2017-03-28 08:34:54 +02:00 committed by Jaco Greeff
parent d6110d7332
commit 8a664c524c
1 changed files with 2 additions and 1 deletions

View File

@ -222,7 +222,8 @@ export default class WalletsUtils {
}
return owners;
});
})
.then((owners) => uniq(owners));
});
}