fix formatting
This commit is contained in:
parent
e41bb599bd
commit
35e9508b28
2 changed files with 66 additions and 63 deletions
|
|
@ -509,9 +509,9 @@ describe('Wallet model', function() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var stub = sinon.stub(w.publicKeyRing,'copayersForPubkeys').returns(
|
var stub = sinon.stub(w.publicKeyRing, 'copayersForPubkeys').returns({
|
||||||
{'027445ab3a935dce7aee1dadb0d103ed6147a0f83deb80474a04538b2c5bc4d509':'pepe'}
|
'027445ab3a935dce7aee1dadb0d103ed6147a0f83deb80474a04538b2c5bc4d509': 'pepe'
|
||||||
);
|
});
|
||||||
w._handleTxProposal('senderID', txp, true);
|
w._handleTxProposal('senderID', txp, true);
|
||||||
Object.keys(w.txProposals.txps).length.should.equal(1);
|
Object.keys(w.txProposals.txps).length.should.equal(1);
|
||||||
w.getTxProposals().length.should.equal(1);
|
w.getTxProposals().length.should.equal(1);
|
||||||
|
|
@ -1121,8 +1121,7 @@ describe('Wallet model', function() {
|
||||||
|
|
||||||
it('should throw if unmatched sigs', function() {
|
it('should throw if unmatched sigs', function() {
|
||||||
var stub = sinon.stub(w.publicKeyRing, 'copayersForPubkeys', function() {
|
var stub = sinon.stub(w.publicKeyRing, 'copayersForPubkeys', function() {
|
||||||
return {
|
return {};
|
||||||
};
|
|
||||||
});
|
});
|
||||||
var txp = {
|
var txp = {
|
||||||
_inputSigners: [
|
_inputSigners: [
|
||||||
|
|
@ -1138,8 +1137,7 @@ describe('Wallet model', function() {
|
||||||
|
|
||||||
it('should throw if unmatched sigs (case 2)', function() {
|
it('should throw if unmatched sigs (case 2)', function() {
|
||||||
var stub = sinon.stub(w.publicKeyRing, 'copayersForPubkeys', function() {
|
var stub = sinon.stub(w.publicKeyRing, 'copayersForPubkeys', function() {
|
||||||
return {
|
return {};
|
||||||
};
|
|
||||||
});
|
});
|
||||||
var txp = {
|
var txp = {
|
||||||
_inputSigners: [
|
_inputSigners: [
|
||||||
|
|
@ -1242,7 +1240,12 @@ describe('Wallet model', function() {
|
||||||
inputChainPaths: ['/m/1'],
|
inputChainPaths: ['/m/1'],
|
||||||
};
|
};
|
||||||
var gk = w._getKeyMap(txp);
|
var gk = w._getKeyMap(txp);
|
||||||
gk.should.deep.equal({ '123': 'pedro', '234': 'pepe', '555': 'pepe', '666': 'pedro' });
|
gk.should.deep.equal({
|
||||||
|
'123': 'pedro',
|
||||||
|
'234': 'pepe',
|
||||||
|
'555': 'pepe',
|
||||||
|
'666': 'pedro'
|
||||||
|
});
|
||||||
stub.restore();
|
stub.restore();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue