remove sender sig check
This commit is contained in:
parent
36fcd6882f
commit
91829f8410
5 changed files with 90 additions and 63 deletions
|
|
@ -91,6 +91,21 @@ describe('TxProposal', function() {
|
|||
should.not.exist(o.builder);
|
||||
should.exist(o.builderObj);
|
||||
});
|
||||
it('toObjTrim', function() {
|
||||
var b = new FakeBuilder();
|
||||
var txp = new TxProposal({
|
||||
creator: 1,
|
||||
createdTs: 1,
|
||||
builder: b,
|
||||
inputChainPaths: 'm/1',
|
||||
});
|
||||
var o = txp.toObjTrim();
|
||||
should.exist(o);
|
||||
should.not.exist(o.creator);
|
||||
should.not.exist(o.builder);
|
||||
should.exist(o.builderObj);
|
||||
});
|
||||
|
||||
});
|
||||
describe('#fromObj', function() {
|
||||
it.skip('should create from Object', function() {
|
||||
|
|
@ -309,7 +324,8 @@ describe('TxProposal', function() {
|
|||
}).should.throw('unknown sig');
|
||||
});
|
||||
|
||||
it("should be signed by sender", function() {
|
||||
// This was disabled. Unnecessary to check this.
|
||||
it.skip("should be signed by sender", function() {
|
||||
var txp = dummyProposal;
|
||||
var ts = Date.now();
|
||||
txp._inputSignatures = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue