forked from cerc-io/plugeth
		
	cmd/evm: capitalize evm commands (#28569)
* standard:fix for a unified standard * standard:fix more as a complements --------- Co-authored-by: haotian <haotian@haotiandeMacBook-Air.local>
This commit is contained in:
		
							parent
							
								
									661bd45188
								
							
						
					
					
						commit
						ad16f11f84
					
				| @ -40,7 +40,7 @@ var RunFlag = &cli.StringFlag{ | ||||
| var blockTestCommand = &cli.Command{ | ||||
| 	Action:    blockTestCmd, | ||||
| 	Name:      "blocktest", | ||||
| 	Usage:     "executes the given blockchain tests", | ||||
| 	Usage:     "Executes the given blockchain tests", | ||||
| 	ArgsUsage: "<file>", | ||||
| 	Flags:     []cli.Flag{RunFlag}, | ||||
| } | ||||
|  | ||||
| @ -29,7 +29,7 @@ import ( | ||||
| var compileCommand = &cli.Command{ | ||||
| 	Action:    compileCmd, | ||||
| 	Name:      "compile", | ||||
| 	Usage:     "compiles easm source to evm binary", | ||||
| 	Usage:     "Compiles easm source to evm binary", | ||||
| 	ArgsUsage: "<file>", | ||||
| } | ||||
| 
 | ||||
|  | ||||
| @ -29,7 +29,7 @@ import ( | ||||
| var disasmCommand = &cli.Command{ | ||||
| 	Action:    disasmCmd, | ||||
| 	Name:      "disasm", | ||||
| 	Usage:     "disassembles evm binary", | ||||
| 	Usage:     "Disassembles evm binary", | ||||
| 	ArgsUsage: "<file>", | ||||
| } | ||||
| 
 | ||||
|  | ||||
| @ -139,7 +139,7 @@ var ( | ||||
| var stateTransitionCommand = &cli.Command{ | ||||
| 	Name:    "transition", | ||||
| 	Aliases: []string{"t8n"}, | ||||
| 	Usage:   "executes a full state transition", | ||||
| 	Usage:   "Executes a full state transition", | ||||
| 	Action:  t8ntool.Transition, | ||||
| 	Flags: []cli.Flag{ | ||||
| 		t8ntool.TraceFlag, | ||||
| @ -165,7 +165,7 @@ var stateTransitionCommand = &cli.Command{ | ||||
| var transactionCommand = &cli.Command{ | ||||
| 	Name:    "transaction", | ||||
| 	Aliases: []string{"t9n"}, | ||||
| 	Usage:   "performs transaction validation", | ||||
| 	Usage:   "Performs transaction validation", | ||||
| 	Action:  t8ntool.Transaction, | ||||
| 	Flags: []cli.Flag{ | ||||
| 		t8ntool.InputTxsFlag, | ||||
| @ -178,7 +178,7 @@ var transactionCommand = &cli.Command{ | ||||
| var blockBuilderCommand = &cli.Command{ | ||||
| 	Name:    "block-builder", | ||||
| 	Aliases: []string{"b11r"}, | ||||
| 	Usage:   "builds a block", | ||||
| 	Usage:   "Builds a block", | ||||
| 	Action:  t8ntool.BuildBlock, | ||||
| 	Flags: []cli.Flag{ | ||||
| 		t8ntool.OutputBasedir, | ||||
|  | ||||
| @ -46,7 +46,7 @@ import ( | ||||
| var runCommand = &cli.Command{ | ||||
| 	Action:      runCmd, | ||||
| 	Name:        "run", | ||||
| 	Usage:       "run arbitrary evm binary", | ||||
| 	Usage:       "Run arbitrary evm binary", | ||||
| 	ArgsUsage:   "<code>", | ||||
| 	Description: `The run command runs arbitrary EVM code.`, | ||||
| 	Flags:       flags.Merge(vmFlags, traceFlags), | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user