Skip to content

Commit

Permalink
net: Do not demand NODE_WITNESS service flag for now
Browse files Browse the repository at this point in the history
  • Loading branch information
lateminer committed Jun 9, 2024
1 parent 5a7b501 commit 4fb6a8d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ ServiceFlags GetDesirableServiceFlags(ServiceFlags services) {
if ((services & NODE_NETWORK_LIMITED) && g_initial_block_download_completed) {
return ServiceFlags(NODE_NETWORK_LIMITED | NODE_WITNESS);
}
return ServiceFlags(NODE_NETWORK | NODE_WITNESS);
// Blackcoin: Do not ask for NODE_WITNESS for now
// return ServiceFlags(NODE_NETWORK | NODE_WITNESS);
return ServiceFlags(NODE_NETWORK);
}

void SetServiceFlagsIBDCache(bool state) {
Expand Down

0 comments on commit 4fb6a8d

Please sign in to comment.