aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authorawfulcrawler <awfulcrawler@fake-email.com>2016-04-18 20:20:31 +1200
committerawfulcrawler <awfulcrawler@fake-email.com>2016-04-18 20:20:31 +1200
commit68cbe1579ee16b578d0dcc76cd1ff539616e3709 (patch)
tree2cad894c239a0894a5e5ccee227170b634eaa4cc /src/wallet/wallet2.h
parent modified: src/simplewallet/simplewallet.cpp (diff)
downloadmonero-68cbe1579ee16b578d0dcc76cd1ff539616e3709.tar.xz
modified: src/wallet/wallet2.cpp
modified: src/wallet/wallet2.h Removed working comments
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r--src/wallet/wallet2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h
index f505d7693..dc3b8482f 100644
--- a/src/wallet/wallet2.h
+++ b/src/wallet/wallet2.h
@@ -143,7 +143,7 @@ namespace tools
{
cryptonote::transaction tx;
uint64_t dust, fee;
- bool dust_added_to_fee; //AC
+ bool dust_added_to_fee;
cryptonote::tx_destination_entry change_dts;
std::list<transfer_container::iterator> selected_transfers;
std::string key_images;
@@ -721,7 +721,7 @@ namespace tools
ptx.key_images = key_images;
ptx.fee = (dust_policy.add_to_fee ? fee+dust : fee);
ptx.dust = ((dust_policy.add_to_fee || dust_sent_elsewhere) ? dust : 0);
- ptx.dust_added_to_fee = dust_policy.add_to_fee; //AC
+ ptx.dust_added_to_fee = dust_policy.add_to_fee;
ptx.tx = tx;
ptx.change_dts = change_dts;
ptx.selected_transfers = selected_transfers;