Skip to content

Commit fc50039

Browse files
committed
fixed merge issue
1 parent 23bed5c commit fc50039

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

src/model/transaction/AggregateTransaction.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class AggregateTransaction extends Transaction {
9696
* @param {InnerTransaction[]} innerTransactions
9797
* @param {NetworkType} networkType
9898
* @param {AggregateTransactionCosignature[]} cosignatures
99-
* @param {UInt64} maxFee - (Optional) Max fee defined by the sender
99+
* @param {UInt64} maxFee - (Optional) Max fee defined by the sender
100100
* @return {AggregateTransaction}
101101
*/
102102
public static createBonded(deadline: Deadline,
@@ -194,4 +194,4 @@ export class AggregateTransaction extends Transaction {
194194

195195
return byteSize + byteTransactionsSize + byteTransactions;
196196
}
197-
}
197+
}

src/model/transaction/CosignatureTransaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ export class CosignatureTransaction {
7979
signedTransactionRaw.signature,
8080
signedTransactionRaw.signer);
8181
}
82-
}
82+
}

test/model/transaction/AggregateTransaction.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,4 +465,4 @@ describe('AggregateTransaction', () => {
465465
expect(aggregateTransaction.size).to.be.equal(120 + 4 + 158);
466466
});
467467
});
468-
});
468+
});

test/model/transaction/CosignatureTransaction.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616

1717
import {expect} from 'chai';
18-
import { VerifiableTransaction } from 'nem2-library';
1918
import {CreateTransactionFromDTO} from '../../../src/infrastructure/transaction/CreateTransactionFromDTO';
2019
import {Account} from '../../../src/model/account/Account';
2120
import { NetworkType } from '../../../src/model/blockchain/NetworkType';
@@ -130,4 +129,4 @@ describe('CosignatureTransaction', () => {
130129
expect(signedTx.signer).to.be.equal('C2F93346E27CE6AD1A9F8F5E3066F8326593A406BDF357ACB041E2F9AB402EFE');
131130
expect(signedTx.signer).to.be.equal(account.publicKey);
132131
});
133-
});
132+
});

0 commit comments

Comments
 (0)