aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2024-08-13 12:29:10 -0400
committerluigi1111 <luigi1111w@gmail.com>2024-08-13 12:29:10 -0400
commit2676e5ae85a64986a10d5912032da271935e4640 (patch)
treee7756e46a7166b303130f32a8e871fb0c2901ae6 /src/wallet/wallet2.cpp
parentbedfa83ea02718b65b236cbb222496903a148b92 (diff)
parent1f733fb868bcdc9c3b037096824ae5e2d763e0f2 (diff)
downloadmonzero-core-2676e5ae85a64986a10d5912032da271935e4640.tar.gz
monzero-core-2676e5ae85a64986a10d5912032da271935e4640.tar.xz
monzero-core-2676e5ae85a64986a10d5912032da271935e4640.zip
Merge pull request #9426
1f733fb Make wallet2::estimate_fee static (Lee Clagett)
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 64f486e71..ad8c36190 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -8007,7 +8007,7 @@ bool wallet2::sign_multisig_tx_from_file(const std::string &filename, std::vecto
return sign_multisig_tx_to_file(exported_txs, filename, txids);
}
//----------------------------------------------------------------------------------------------------
-uint64_t wallet2::estimate_fee(bool use_per_byte_fee, bool use_rct, int n_inputs, int mixin, int n_outputs, size_t extra_size, bool bulletproof, bool clsag, bool bulletproof_plus, bool use_view_tags, uint64_t base_fee, uint64_t fee_quantization_mask) const
+uint64_t wallet2::estimate_fee(bool use_per_byte_fee, bool use_rct, int n_inputs, int mixin, int n_outputs, size_t extra_size, bool bulletproof, bool clsag, bool bulletproof_plus, bool use_view_tags, uint64_t base_fee, uint64_t fee_quantization_mask)
{
if (use_per_byte_fee)
{