-
Notifications
You must be signed in to change notification settings - Fork 796
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
Conversation
Codecov Report
Flags with carried forward coverage won't be shown. Click here to find out more. |
There was a problem hiding this 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' |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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) { |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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").
There was a problem hiding this comment.
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! 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Extracts the tx package from #2233