Skip to content

Commit e06e039

Browse files
committed
Merge branch 'task/g353_max_fee' of github.com:NEMStudios/nem2-sdk-typescript-javascript into task/g353_max_fee
2 parents 9aa7bc2 + b2deef2 commit e06e039

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/model/transaction/Deadline.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class Deadline {
2626
/**
2727
* @type {number}
2828
*/
29-
public static timestampNemesisBlock = 1459468800;
29+
public static timestampNemesisBlock = 1573426800;
3030

3131
/**
3232
* Deadline value

test/model/mosaic/MosaicNonce.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('MosaicNonce', () => {
2424
it('should be created from Uint8Array', () => {
2525
const nonce = new MosaicNonce(new Uint8Array([0x0, 0x0, 0x0, 0x0]));
2626
deepEqual(nonce.nonce, new Uint8Array([0x0, 0x0, 0x0, 0x0]));
27-
deepEqual(nonce.toDTO(), [0, 0, 0, 0]);
27+
deepEqual(nonce.toDTO(), new Uint8Array([0x0, 0x0, 0x0, 0x0]));
2828
});
2929

3030
it('should create random nonce', () => {

0 commit comments

Comments
 (0)