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

Spyder46n2 update seeder version info #2

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
19 changes: 19 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: C/C++ CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: install deps
run: sudo apt-get install build-essential libboost-all-dev libssl-dev
- name: make
run: make
2 changes: 1 addition & 1 deletion ravencoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class CNode
CAddress me(CService("0.0.0.0"));
BeginMessage("version");
int nBestHeight = GetRequireHeight();
string ver = "/ravencoin-seeder:3.3.1/";
string ver = "/ravencoin-seeder:4.3.1/";
uint8_t fRelayTxs = 0;
vSend << PROTOCOL_VERSION << nLocalServices << nTime << you << me << nLocalNonce << ver << nBestHeight
<< fRelayTxs;
Expand Down
2 changes: 1 addition & 1 deletion serialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class CAutoFile;
static const unsigned int MAX_SIZE = 0x02000000;

// RIP-5 (restricted assets)
static const int PROTOCOL_VERSION = 70026;
static const int PROTOCOL_VERSION = 70028;

// Used to bypass the rule against non-const reference to temporary
// where it makes sense with wrappers such as CFlatData or CTxDB
Expand Down