-
Notifications
You must be signed in to change notification settings - Fork 1
refactor(protocol): prune grpc-gateway related proto #72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
04821b8
52e1d1a
56a6249
ec2dbb7
6df6132
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ package protocol; | |
|
|
||
| option java_package = "org.tron.protos.contract"; //Specify the name of the package that generated the Java file | ||
| //option java_outer_classname = "CreateSmartContract"; //Specify the class name of the generated Java file | ||
| option go_package = "github.com/tronprotocol/grpc-gateway/core"; | ||
| option go_package = "github.com/tronprotocol/protocol/core/contract"; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P3: Remove the Prompt for AI agents |
||
|
|
||
| import "core/Tron.proto"; | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ package protocol; | |
|
|
||
| option java_package = "org.tron.protos.contract"; //Specify the name of the package that generated the Java file | ||
| //option java_outer_classname = "BuyStorageBytesContract"; //Specify the class name of the generated Java file | ||
| option go_package = "github.com/tronprotocol/grpc-gateway/core"; | ||
| option go_package = "github.com/tronprotocol/protocol/core/contract"; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: Remove this Prompt for AI agents |
||
|
|
||
| message BuyStorageBytesContract { | ||
| bytes owner_address = 1; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3: Remove the
go_packageoption; this file is meant to be part of the proto cleanup that strips Go-generation metadata.Prompt for AI agents