aboutsummaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2010-12-12 16:03:42 -0500
committerGavin Andresen <gavinandresen@gmail.com>2010-12-12 16:03:42 -0500
commit9c17a685bdd69f60c3140f6d502696c880254893 (patch)
tree7d43675cfe4c300eadc024c6a023785a596cc396 /main.h
parentd12e53ea090ba49a82ff4f79782af809d21cf280 (diff)
parent986b5e257e2bb9d7aaed5111ca335732f8808b2d (diff)
downloadbitcoin-9c17a685bdd69f60c3140f6d502696c880254893.tar.xz
Merge remote branch 'refs/remotes/svn/trunk' into svn
Diffstat (limited to 'main.h')
-rw-r--r--main.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/main.h b/main.h
index 0b950e8074..088e2860c3 100644
--- a/main.h
+++ b/main.h
@@ -1754,7 +1754,7 @@ public:
// Actions
string strComment;
string strStatusBar;
- string strRPCError;
+ string strReserved;
IMPLEMENT_SERIALIZE
(
@@ -1772,7 +1772,7 @@ public:
READWRITE(strComment);
READWRITE(strStatusBar);
- READWRITE(strRPCError);
+ READWRITE(strReserved);
)
void SetNull()
@@ -1790,7 +1790,7 @@ public:
strComment.clear();
strStatusBar.clear();
- strRPCError.clear();
+ strReserved.clear();
}
string ToString() const
@@ -1815,7 +1815,6 @@ public:
" nPriority = %d\n"
" strComment = \"%s\"\n"
" strStatusBar = \"%s\"\n"
- " strRPCError = \"%s\"\n"
")\n",
nVersion,
nRelayUntil,
@@ -1828,8 +1827,7 @@ public:
strSetSubVer.c_str(),
nPriority,
strComment.c_str(),
- strStatusBar.c_str(),
- strRPCError.c_str());
+ strStatusBar.c_str());
}
void print() const