Skip to content

Commit

Permalink
add NETWORK_UNKNOWN enum case
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-L2L committed Oct 5, 2024
1 parent 1be2318 commit 09f4fe0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions proto/cusf/mainchain/v1/mainchain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ message BlockHeaderInfo {

enum Network {
NETWORK_UNSPECIFIED = 0;
NETWORK_MAINNET = 1;
NETWORK_REGTEST = 2;
NETWORK_SIGNET = 3;
NETWORK_TESTNET = 4;
NETWORK_UNKNOWN = 1;
NETWORK_MAINNET = 2;
NETWORK_REGTEST = 3;
NETWORK_SIGNET = 4;
NETWORK_TESTNET = 5;
}

message OutPoint {
Expand Down

0 comments on commit 09f4fe0

Please sign in to comment.