Skip to content

Commit

Permalink
test: fix rentEpoch value
Browse files Browse the repository at this point in the history
  • Loading branch information
yihau committed Jan 31, 2023
1 parent aa72aa8 commit d5dc08d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions web3.js/test/connection.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -319,15 +319,15 @@ describe('Connection', function () {
lamports: LAMPORTS_PER_SOL,
data: ['', 'base64'],
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
{
owner: '11111111111111111111111111111111',
lamports: LAMPORTS_PER_SOL,
data: ['', 'base64'],
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
];
Expand All @@ -353,15 +353,15 @@ describe('Connection', function () {
lamports: LAMPORTS_PER_SOL,
data: Buffer.from([]),
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
{
owner: new PublicKey('11111111111111111111111111111111'),
lamports: LAMPORTS_PER_SOL,
data: Buffer.from([]),
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
];
Expand Down Expand Up @@ -5189,7 +5189,7 @@ describe('Connection', function () {
executable: false,
lamports: LAMPORTS_PER_SOL - 5000,
owner: SystemProgram.programId.toBase58(),
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
]);
Expand Down

0 comments on commit d5dc08d

Please sign in to comment.