Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tx: remove isTruthy and isFalsy #2250

Merged
merged 3 commits into from
Aug 30, 2022
Merged

Conversation

gabrocheleau
Copy link
Contributor

Extracts the tx package from #2233

@codecov
Copy link

codecov bot commented Aug 30, 2022

Codecov Report

Merging #2250 (9cac0fe) into master (f06b921) will decrease coverage by 0.01%.
The diff coverage is 100.00%.

Impacted file tree graph

Flag Coverage Δ
block 92.77% <ø> (ø)
blockchain 88.39% <ø> (ø)
client 87.05% <100.00%> (-0.03%) ⬇️
common 98.09% <ø> (ø)
devp2p 92.22% <ø> (-0.03%) ⬇️
ethash ∅ <ø> (∅)
evm 79.11% <ø> (ø)
rlp ∅ <ø> (∅)
statemanager 88.16% <ø> (ø)
trie 89.43% <ø> (ø)
tx 97.98% <100.00%> (-0.01%) ⬇️
util 92.33% <ø> (ø)
vm 85.27% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Copy link
Member

@jochem-brouwer jochem-brouwer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@@ -26,7 +26,7 @@ import type { RpcTx } from '../types'
import type { Block } from '@ethereumjs/block'
import type { Log } from '@ethereumjs/evm'
import type { Proof } from '@ethereumjs/statemanager'
import type { FeeMarketEIP1559Transaction, JsonTx, TypedTransaction } from '@ethereumjs/tx'
import type { FeeMarketEIP1559Transaction, JsonRpcTx, TypedTransaction } from '@ethereumjs/tx'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a file in client, I think this is the wrong PR?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah OK I see that the interface is moved into tx.

import * as minimist from 'minimist'

const argv = minimist(process.argv.slice(2))

if (isTruthy(argv.b)) {
if (argv.b === true) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm good with this but just want to confirm, we're not looking to enforce a hard rule on how we write boolean checks where the value we're checking is indeed a boolean like here, right? So stylistically for us, it's fine to write either:
if (argv.b) or if (argv.b === true) right? Or does this eslint rule disallow the first?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are correct! In this case, since argv.b, is not typed, I made it explicit, but in normal cases where we're dealing with a boolean, there's no need to be explicit. Explicitness is only needed when truthiness/falsiness is involved (and boolean is true/false, not "truthy/falsy").

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, that's good to have this confirmed! 🙂

Copy link
Contributor

@acolytec3 acolytec3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@gabrocheleau gabrocheleau merged commit f39b0b2 into master Aug 30, 2022
@gabrocheleau gabrocheleau deleted the tx/remove-isfalsy-istruthy branch August 30, 2022 14:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants