File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -718,9 +718,8 @@ func (r *Runner) parseModes(ctx context.Context) error {
718718 if cfg .LegacyTxMode && config .HasMode (config .ModeBlob , cfg .ParsedModes ) {
719719 return errors .New ("blob transactions require eip-1559" )
720720 }
721- if config .HasMode (config .ModeUniswapV3 , cfg .ParsedModes ) && cfg .UniswapV3 == nil {
722- return errors .New ("uniswapv3 mode requires the 'polycli loadtest uniswapv3' subcommand to configure contract addresses" )
723- }
721+ // UniswapV3 mode can be used via --mode flag with defaults, or via subcommand with custom config
722+ // Default config is created in deployContracts if cfg.UniswapV3 is nil
724723
725724 // Initialize mode-specific dependencies
726725 for _ , parsedMode := range cfg .ParsedModes {
You can’t perform that action at this time.
0 commit comments