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

View File

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