You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/types/tx_setcode.go
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -58,18 +58,18 @@ type SetCodeTx struct {
58
58
Value*uint256.Int
59
59
Data []byte
60
60
AccessListAccessList
61
-
AuthList []Authorization
61
+
AuthList []SetCodeAuthorization
62
62
63
63
// Signature values
64
64
V*uint256.Int`json:"v" gencodec:"required"`
65
65
R*uint256.Int`json:"r" gencodec:"required"`
66
66
S*uint256.Int`json:"s" gencodec:"required"`
67
67
}
68
68
69
-
//go:generate go run github.com/fjl/gencodec -type Authorization -field-override authorizationMarshaling -out gen_authorization.go
69
+
//go:generate go run github.com/fjl/gencodec -type SetCodeAuthorization -field-override authorizationMarshaling -out gen_authorization.go
70
70
71
-
// Authorization is an authorization from an account to deploy code at its address.
72
-
typeAuthorizationstruct {
71
+
// SetCodeAuthorization is an authorization from an account to deploy code at its address.
0 commit comments