Skip to content
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

Fix broken links #179

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions api/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import "core/contract/shield_contract.proto";

option java_package = "org.tron.api"; //Specify the name of the package that generated the Java file
option java_outer_classname = "GrpcAPI"; //Specify the class name of the generated Java file
option go_package = "github.com/tronprotocol/grpc-gateway/api";
option go_package = "github.com/tronprotocol/protocol/blob/master/api";

service Wallet {

Expand Down Expand Up @@ -74,7 +74,6 @@ service Wallet {
};
};


rpc SetAccountId (SetAccountIdContract) returns (Transaction) {
option (google.api.http) = {
post: "/wallet/setaccountid"
Expand Down Expand Up @@ -429,7 +428,6 @@ service Wallet {
};
};


rpc GetDelegatedResource (DelegatedResourceMessage) returns (DelegatedResourceList) {
};

Expand Down Expand Up @@ -624,15 +622,12 @@ service Wallet {
}

rpc AddSign (TransactionSign) returns (TransactionExtention) {

}

rpc GetTransactionSignWeight (Transaction) returns (TransactionSignWeight) {

}

rpc GetTransactionApprovedList (Transaction) returns (TransactionApprovedList) {

}

rpc GetNodeInfo (EmptyMessage) returns (NodeInfo) {
Expand All @@ -645,7 +640,6 @@ service Wallet {
};

rpc UpdateBrokerage (UpdateBrokerageContract) returns (TransactionExtention) {

};

// for shiededTransaction
Expand Down Expand Up @@ -906,16 +900,15 @@ service WalletExtension {
service Database {
// for tapos
rpc getBlockReference (EmptyMessage) returns (BlockReference) {

}

rpc GetDynamicProperties (EmptyMessage) returns (DynamicProperties) {

}

rpc GetNowBlock (EmptyMessage) returns (Block) {

}

rpc GetBlockByNum (NumberMessage) returns (Block) {

}
};

Expand Down