issues
search
matter-labs
/
era-test-node
In-memory node that can be used for integration testing and debugging.
https://matter-labs.github.io/era-test-node
Apache License 2.0
313
stars
76
forks
source link
fix: remove erroneous clap::requires
#380
Closed
nbaztec
closed
3 weeks ago
nbaztec
commented
3 weeks ago
What :computer:
Removes erroneous
requires("fork")
Why :hand:
The group
fork
does not exist and panics in debug builds due to clap's
debug_asserts
. Additionally the args are now contained within the
fork
subcommand so requires is redundant.
Similar to
https://github.com/matter-labs/era-test-node/pull/379
Evidence :camera:
Tested locally
What :computer:
requires("fork")
Why :hand:
fork
does not exist and panics in debug builds due to clap'sdebug_asserts
. Additionally the args are now contained within thefork
subcommand so requires is redundant.Evidence :camera:
Tested locally