We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cecfe80 commit d0cccadCopy full SHA for d0cccad
src/protocol.h
@@ -276,6 +276,8 @@ enum ServiceFlags : uint64_t {
276
// collisions and other cases where nodes may be advertising a service they
277
// do not actually support. Other service bits should be allocated via the
278
// BIP process.
279
+
280
+ NODE_REPLACE_BY_FEE = (1 << 26),
281
};
282
283
/**
src/qt/guiutil.cpp
@@ -835,6 +835,9 @@ QString formatServicesStr(quint64 mask)
835
case NODE_XTHIN:
836
strList.append("XTHIN");
837
break;
838
+ case NODE_REPLACE_BY_FEE:
839
+ strList.append("REPLACE_BY_FEE?");
840
+ break;
841
default:
842
strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check));
843
}
0 commit comments