Fix error message

This commit is contained in:
Esteban Ordano 2014-09-02 18:44:54 -03:00
commit b39a683339

View file

@ -135,7 +135,7 @@ TxProposal.fromObj = function(o, forceOpts) {
}
o.builder = TransactionBuilder.fromObj(o.builderObj);
} catch (e) {
throw new Error("Old version of wallet detected.");
throw new Error("Invalid or Incompatible Backup Detected.");
}
return new TxProposal(o);
};