diff --git a/apps/contract-migration/scripts/cic_meta/import_meta_phone.js b/apps/contract-migration/scripts/cic_meta/import_meta_phone.js index ebc98e47..45bb546b 100644 --- a/apps/contract-migration/scripts/cic_meta/import_meta_phone.js +++ b/apps/contract-migration/scripts/cic_meta/import_meta_phone.js @@ -43,7 +43,6 @@ function sendit(uid, envelope) { } function doOne(keystore, filePath, address) { - let ethereum_address = '0x' + address; const signer = new crdt.PGPSigner(keystore); const j = JSON.parse(fs.readFileSync(filePath).toString()); @@ -54,7 +53,7 @@ function doOne(keystore, filePath, address) { cic.Phone.toKey(phone).then((uid) => { - const s = new crdt.Syncable(uid, ethereum_address); + const s = new crdt.Syncable(uid, address); s.setSigner(signer); s.onwrap = (env) => { sendit(uid, env);