chore: bump prettier from 2.2.1 to 2.3.0 in /web3.js (#17143)
* chore: bump prettier from 2.2.1 to 2.3.0 in /web3.js Bumps [prettier](https://github.com/prettier/prettier) from 2.2.1 to 2.3.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.2.1...2.3.0) Signed-off-by: dependabot[bot] <support@github.com> * chore: bump * chore: format Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Justin Starry <justin@solana.com>
This commit is contained in:
@ -3020,9 +3020,8 @@ export class Connection {
|
||||
'finalized',
|
||||
);
|
||||
if (block.signatures.length > 0) {
|
||||
options.until = block.signatures[
|
||||
block.signatures.length - 1
|
||||
].toString();
|
||||
options.until =
|
||||
block.signatures[block.signatures.length - 1].toString();
|
||||
}
|
||||
} catch (err) {
|
||||
if (err.message.includes('skipped')) {
|
||||
@ -3043,9 +3042,8 @@ export class Connection {
|
||||
try {
|
||||
const block = await this.getConfirmedBlockSignatures(endSlot);
|
||||
if (block.signatures.length > 0) {
|
||||
options.before = block.signatures[
|
||||
block.signatures.length - 1
|
||||
].toString();
|
||||
options.before =
|
||||
block.signatures[block.signatures.length - 1].toString();
|
||||
}
|
||||
} catch (err) {
|
||||
if (err.message.includes('skipped')) {
|
||||
|
Reference in New Issue
Block a user