diff options
| author | Jeff Garzik <[email protected]> | 2012-05-24 09:14:04 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-05-24 09:14:04 -0700 |
| commit | ec9c9021336c5c0b6a7c0ad3cc4f8d563fe65f56 (patch) | |
| tree | 59181b4ed7839ecf940cd33d1bed93c74a8223b6 /src/main.cpp | |
| parent | Merge branch 'merge2' into merge (diff) | |
| parent | JSON-RPC: Add 'sendrawtx' op, for sending pre-built TX's to network (diff) | |
| download | discoin-ec9c9021336c5c0b6a7c0ad3cc4f8d563fe65f56.tar.xz discoin-ec9c9021336c5c0b6a7c0ad3cc4f8d563fe65f56.zip | |
Merge pull request #1383 from jgarzik/rawtx
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 9e20ca626..96718cf18 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); |