mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
rename to AuthorizationList
This commit is contained in:
parent
4c793dafd6
commit
ac9313deea
3 changed files with 5 additions and 5 deletions
|
|
@ -754,8 +754,8 @@ func toCallArg(msg ethereum.CallMsg) interface{} {
|
|||
if msg.BlobHashes != nil {
|
||||
arg["blobVersionedHashes"] = msg.BlobHashes
|
||||
}
|
||||
if msg.AuthList != nil {
|
||||
arg["authorizationList"] = msg.AuthList
|
||||
if msg.AuthorizationList != nil {
|
||||
arg["authorizationList"] = msg.AuthorizationList
|
||||
}
|
||||
return arg
|
||||
}
|
||||
|
|
|
|||
|
|
@ -251,8 +251,8 @@ func toCallArg(msg ethereum.CallMsg) interface{} {
|
|||
if msg.BlobHashes != nil {
|
||||
arg["blobVersionedHashes"] = msg.BlobHashes
|
||||
}
|
||||
if msg.AuthList != nil {
|
||||
arg["authorizationList"] = msg.AuthList
|
||||
if msg.AuthorizationList != nil {
|
||||
arg["authorizationList"] = msg.AuthorizationList
|
||||
}
|
||||
return arg
|
||||
}
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ type CallMsg struct {
|
|||
BlobHashes []common.Hash
|
||||
|
||||
// For SetCodeTxType
|
||||
AuthList []types.SetCodeAuthorization
|
||||
AuthorizationList []types.SetCodeAuthorization
|
||||
}
|
||||
|
||||
// A ContractCaller provides contract calls, essentially transactions that are executed by
|
||||
|
|
|
|||
Loading…
Reference in a new issue