wallet to getId() fixes

This commit is contained in:
Matias Alejo Garcia 2014-04-19 11:30:55 -03:00
parent d8ccade277
commit 405f97d765
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ describe('Wallet model', function() {
tx.isComplete().should.equal(false);
tx.countInputMissingSignatures(0).should.equal(2);
( t.txps[k].signedBy[w.privateKey.id] - ts > 0).should.equal(true);
( t.txps[k].seenBy[w.privateKey.id] - ts > 0).should.equal(true);
( t.txps[k].signedBy[w.privateKey.getId()] - ts > 0).should.equal(true);
( t.txps[k].seenBy[w.privateKey.getId()] - ts > 0).should.equal(true);
}
}
});