internal/ethapi: use same receiver names (#24252)

* Chore: use same receiver names

* Fix syntax issues
This commit is contained in:
Denver 2022-01-20 17:38:42 +09:00 committed by GitHub
parent 7dec26db2a
commit 03aaea11d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,20 +55,20 @@ type TransactionArgs struct {
} }
// from retrieves the transaction sender address. // from retrieves the transaction sender address.
func (arg *TransactionArgs) from() common.Address { func (args *TransactionArgs) from() common.Address {
if arg.From == nil { if args.From == nil {
return common.Address{} return common.Address{}
} }
return *arg.From return *args.From
} }
// data retrieves the transaction calldata. Input field is preferred. // data retrieves the transaction calldata. Input field is preferred.
func (arg *TransactionArgs) data() []byte { func (args *TransactionArgs) data() []byte {
if arg.Input != nil { if args.Input != nil {
return *arg.Input return *args.Input
} }
if arg.Data != nil { if args.Data != nil {
return *arg.Data return *args.Data
} }
return nil return nil
} }