-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed unnecessary keys from provider module events
- Loading branch information
1 parent
b0257d4
commit a40c2ec
Showing
3 changed files
with
77 additions
and
538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,20 @@ | ||
syntax = "proto3"; | ||
package sentinel.provider.v1; | ||
|
||
option go_package = "github.com/sentinel-official/hub/x/provider/types"; | ||
|
||
import "gogoproto/gogo.proto"; | ||
|
||
option go_package = "github.com/sentinel-official/hub/x/provider/types"; | ||
option (gogoproto.equal_all) = false; | ||
option (gogoproto.goproto_getters_all) = false; | ||
|
||
message EventModule { string name = 1; } | ||
message EventModule { | ||
string name = 1 [ (gogoproto.moretags) = "yaml:\"name\"" ]; | ||
} | ||
|
||
message EventRegisterProvider { | ||
string from = 1; | ||
string address = 2; | ||
string name = 3; | ||
string identity = 4; | ||
string website = 5; | ||
string description = 6; | ||
message EventRegister { | ||
string address = 1 [ (gogoproto.moretags) = "yaml:\"address\"" ]; | ||
} | ||
|
||
message EventUpdateProvider { | ||
string from = 1; | ||
string address = 2; | ||
string name = 3; | ||
string identity = 4; | ||
string website = 5; | ||
string description = 6; | ||
message EventUpdate { | ||
string address = 1 [ (gogoproto.moretags) = "yaml:\"address\"" ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.