diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-04-02 11:16:56 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-04-02 11:37:09 -0400 |
commit | fafcad38c89457ff8b36088428d4f1bb3a3834ce (patch) | |
tree | 32037e6276721ecfd2d91a0c579d8ed0907db7ca /src/rpc | |
parent | 18815b4bfb20c9c1112e547217662529d81e4393 (diff) |
doc: Add testmempoolaccept to release-notes
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/rawtransaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 9d7aa58894..f0493de3bd 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1198,7 +1198,7 @@ UniValue testmempoolaccept(const JSONRPCRequest& request) { LOCK(cs_main); test_accept_res = AcceptToMemoryPool(mempool, state, std::move(tx), &missing_inputs, - nullptr /* plTxnReplaced */, false /* bypass_limits */, max_raw_tx_fee, /* test_accpet */ true); + nullptr /* plTxnReplaced */, false /* bypass_limits */, max_raw_tx_fee, /* test_accept */ true); } result_0.pushKV("allowed", test_accept_res); if (!test_accept_res) { |