Fix typo in invalid MemoData error

This commit is contained in:
wltsmrz
2014-08-15 20:18:47 -07:00
parent 60069d0a28
commit 81e805fcb9
2 changed files with 3 additions and 3 deletions

View File

@@ -612,7 +612,7 @@ Transaction.prototype.addMemo = function(type, data) {
}
if (!/(undefined|string)/.test(typeof data)) {
throw new Error('MemoData must be string');
throw new Error('MemoData must be a string');
}
function toHex(str) {