Browse Source

Successful result of z_sendmany returns txid so it doesn't need to return raw hex.

pull/145/head
Simon 8 years ago
parent
commit
15d345466d
  1. 2
      src/wallet/asyncrpcoperation_sendmany.cpp

2
src/wallet/asyncrpcoperation_sendmany.cpp

@ -358,7 +358,7 @@ bool AsyncRPCOperation_sendmany::main_impl() {
Object o;
o.push_back(Pair("txid", txid));
o.push_back(Pair("hex", signedtxn));
//o.push_back(Pair("hex", signedtxn));
setResult(Value(o));
} else {
// Test mode does not send the transaction to the network.

Loading…
Cancel
Save