diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-05-23 16:21:25 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-05-23 16:21:25 -0400 |
commit | 976c08b68a516514b7d987ea7dd3ec59ca166ba0 (patch) | |
tree | f0ccd128d914f7dd1bb41d96e31b982785c61d7a /src/main.cpp | |
parent | 7a99821377eb46a1cc8b0115daf3af01ddb26a16 (diff) |
JSON-RPC: Add 'sendrawtx' op, for sending pre-built TX's to network
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9a4d7abc8c..557f9dd99a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -109,7 +109,7 @@ void static EraseFromWallets(uint256 hash) } // make sure all wallets know about the given transaction, in the given block -void static SyncWithWallets(const CTransaction& tx, const CBlock* pblock = NULL, bool fUpdate = false) +void SyncWithWallets(const CTransaction& tx, const CBlock* pblock, bool fUpdate) { BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate); |