diff options
author | Gregory Maxwell <greg@xiph.org> | 2016-04-20 19:38:19 +0000 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2016-05-16 04:10:06 +0000 |
commit | d87b198b7334317952ca6a1377e25b5c859a1767 (patch) | |
tree | 29d9f99f470ad78cd2da6ce4673a6837642336ab /src/net.cpp | |
parent | 169d379c98357a17e634f34b5e72033c69f9a7cb (diff) |
Remove unneeded feerate param from RelayTransaction/AcceptToMemoryPool.
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 5e810a0f15..aa5b47340a 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2069,7 +2069,7 @@ public: instance_of_cnetcleanup; -void RelayTransaction(const CTransaction& tx, CFeeRate feerate) +void RelayTransaction(const CTransaction& tx) { CInv inv(MSG_TX, tx.GetHash()); { |