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 3ee0ffb commit 90b733aCopy full SHA for 90b733a
src/test/rawtransaction.cpp
@@ -135,7 +135,7 @@ BOOST_AUTO_TEST_CASE(SendRawTransaction) {
135
try{
136
fx.btc.sendrawtransaction(txid, false);
137
}catch(BitcoinException& e){
138
- BOOST_REQUIRE(e.getCode() == -25);
+ BOOST_REQUIRE(e.getCode() == -25 || e.getCode() == -27);
139
}
140
141
src/test/wallet.cpp
@@ -205,6 +205,7 @@ BOOST_AUTO_TEST_CASE(KeypoolRefill) {
205
int newkeypoolsize;
206
int refreshedkeypoolsize;
207
208
+
209
/* Get current keypool size and use one key */
210
BOOST_REQUIRE_NO_THROW(oldkeypoolsize = fx.btc.getinfo().keypoolsize);
211
BOOST_REQUIRE_NO_THROW(fx.btc.getnewaddress());
0 commit comments