We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed58496 commit 05a2d87Copy full SHA for 05a2d87
app/admin.js
@@ -305,6 +305,10 @@ const handleImportKeys = co(function *(args) {
305
* Alternatively, if the key is specified to be an xpub, we would just remove the XLM info and continue as normal
306
*/
307
const formatKeysByType = function(keys, type) {
308
+ // if using the old format, don't do anything here, just return the keys
309
+ if (!keys[0].xlmpub) {
310
+ return keys;
311
+ }
312
const formattedkeys = [];
313
_.forEach(keys, function(key) {
314
formattedkeys.push({
0 commit comments