forked from ConcealNetwork/conceal-desktop
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFuego-GUI.pro
1008 lines (1004 loc) · 54.5 KB
/
Fuego-GUI.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
######################################################################
# Automatically generated by qmake (3.1) Wed Nov 18 18:17:57 2020
######################################################################
TEMPLATE = app
TARGET = fuego-desktop
INCLUDEPATH += .
# The following define makes your compiler warn you if you use any
# feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
# Input
HEADERS += libqrencode/bitstream.h \
libqrencode/mask.h \
libqrencode/mmask.h \
libqrencode/mqrspec.h \
libqrencode/qrencode.h \
libqrencode/qrencode_inner.h \
libqrencode/qrinput.h \
libqrencode/qrspec.h \
libqrencode/rsecc.h \
libqrencode/split.h \
src/AddressProvider.h \
src/AliasProvider.h \
src/CommandLineParser.h \
src/CryptoNoteWrapper.h \
src/CurrencyAdapter.h \
src/ExchangeProvider.h \
src/LogFileWatcher.h \
src/LoggerAdapter.h \
src/miniupnpcstrings.h \
src/NodeAdapter.h \
src/OptimizationManager.h \
src/PriceProvider.h \
src/Settings.h \
src/SignalHandler.h \
src/TranslatorManager.h \
src/UpdateManager.h \
src/WalletAdapter.h \
cryptonote/include/BlockchainExplorerData.h \
cryptonote/include/CryptoNote.h \
cryptonote/include/CryptoTypes.h \
cryptonote/include/IBlockchainExplorer.h \
cryptonote/include/INode.h \
cryptonote/include/IObservable.h \
cryptonote/include/IStreamSerializable.h \
cryptonote/include/ITransaction.h \
cryptonote/include/ITransfersContainer.h \
cryptonote/include/ITransfersSynchronizer.h \
cryptonote/include/IWallet.h \
cryptonote/include/IWalletLegacy.h \
cryptonote/src/CryptoNoteConfig.h \
cryptonote/tests/Io.h \
libqrencode/tests/common.h \
libqrencode/tests/datachunk.h \
libqrencode/tests/decoder.h \
libqrencode/tests/rscode.h \
libqrencode/tests/rsecc_decoder.h \
src/gui/AddressBookDialog.h \
src/gui/AddressBookModel.h \
src/gui/AddressListModel.h \
src/gui/AnimatedLabel.h \
src/gui/ChangePasswordDialog.h \
src/gui/DepositDetailsDialog.h \
src/gui/DepositListModel.h \
src/gui/DepositModel.h \
src/gui/EditableStyle.h \
src/gui/ExitWidget.h \
src/gui/ImportGUIKeyDialog.h \
src/gui/ImportSecretKeys.h \
src/gui/ImportSeedDialog.h \
src/gui/ImportTracking.h \
src/gui/MainPasswordDialog.h \
src/gui/MainWindow.h \
src/gui/Message.h \
src/gui/MessageDetailsDialog.h \
src/gui/MessagesModel.h \
src/gui/NewAddressDialog.h \
src/gui/NewPasswordDialog.h \
src/gui/Notification.h \
src/gui/OverviewFrame.h \
src/gui/PasswordDialog.h \
src/gui/QRLabel.h \
src/gui/ReceiveFrame.h \
src/gui/RecentTransactionsModel.h \
src/gui/ShowQRCode.h \
src/gui/SortedAddressListModel.h \
src/gui/SortedDepositModel.h \
src/gui/SortedMessagesModel.h \
src/gui/SortedTransactionsModel.h \
src/gui/SplashScreen.h \
src/gui/TransactionDetailsDialog.h \
src/gui/TransactionFrame.h \
src/gui/TransactionsListModel.h \
src/gui/TransactionsModel.h \
src/gui/VisibleMessagesModel.h \
src/gui/WalletEvents.h \
src/gui/WelcomeFrame.h \
cryptonote/external/google/type_traits.h \
cryptonote/external/miniupnpc/bsdqueue.h \
cryptonote/external/miniupnpc/codelength.h \
cryptonote/external/miniupnpc/connecthostport.h \
cryptonote/external/miniupnpc/declspec.h \
cryptonote/external/miniupnpc/igd_desc_parse.h \
cryptonote/external/miniupnpc/minisoap.h \
cryptonote/external/miniupnpc/minissdpc.h \
cryptonote/external/miniupnpc/miniupnpc.h \
cryptonote/external/miniupnpc/miniupnpctypes.h \
cryptonote/external/miniupnpc/miniwget.h \
cryptonote/external/miniupnpc/minixml.h \
cryptonote/external/miniupnpc/portlistingparse.h \
cryptonote/external/miniupnpc/receivedata.h \
cryptonote/external/miniupnpc/upnpcommands.h \
cryptonote/external/miniupnpc/upnperrors.h \
cryptonote/external/miniupnpc/upnpreplyparse.h \
cryptonote/external/parallel_hashmap/btree.h \
cryptonote/external/parallel_hashmap/meminfo.h \
cryptonote/external/parallel_hashmap/phmap.h \
cryptonote/external/parallel_hashmap/phmap_base.h \
cryptonote/external/parallel_hashmap/phmap_bits.h \
cryptonote/external/parallel_hashmap/phmap_config.h \
cryptonote/external/parallel_hashmap/phmap_dump.h \
cryptonote/external/parallel_hashmap/phmap_fwd_decl.h \
cryptonote/external/parallel_hashmap/phmap_utils.h \
cryptonote/src/BlockchainExplorer/BlockchainExplorer.h \
cryptonote/src/BlockchainExplorer/BlockchainExplorerDataBuilder.h \
cryptonote/src/BlockchainExplorer/BlockchainExplorerErrors.h \
cryptonote/src/Common/ArrayRef.h \
cryptonote/src/Common/ArrayView.h \
cryptonote/src/Common/Base58.h \
cryptonote/src/Common/Base64.h \
cryptonote/src/Common/BlockingQueue.h \
cryptonote/src/Common/CommandLine.h \
cryptonote/src/Common/ConsoleHandler.h \
cryptonote/src/Common/ConsoleTools.h \
cryptonote/src/Common/DnsTools.h \
cryptonote/src/Common/FileMappedVector.h \
cryptonote/src/Common/IInputStream.h \
cryptonote/src/Common/int-util.h \
cryptonote/src/Common/IOutputStream.h \
cryptonote/src/Common/JsonValue.h \
cryptonote/src/Common/Math.h \
cryptonote/src/Common/MemoryInputStream.h \
cryptonote/src/Common/ObserverManager.h \
cryptonote/src/Common/PathTools.h \
cryptonote/src/Common/pod-class.h \
cryptonote/src/Common/ScopeExit.h \
cryptonote/src/Common/ShuffleGenerator.h \
cryptonote/src/Common/SignalHandler.h \
cryptonote/src/Common/static_assert.h \
cryptonote/src/Common/StdInputStream.h \
cryptonote/src/Common/StdOutputStream.h \
cryptonote/src/Common/StreamTools.h \
cryptonote/src/Common/StringBuffer.h \
cryptonote/src/Common/StringInputStream.h \
cryptonote/src/Common/StringOutputStream.h \
cryptonote/src/Common/StringTools.h \
cryptonote/src/Common/StringView.h \
cryptonote/src/Common/Util.h \
cryptonote/src/Common/Varint.h \
cryptonote/src/Common/VectorOutputStream.h \
cryptonote/src/crypto/aux_hash.h \
cryptonote/src/crypto/chacha8.h \
cryptonote/src/crypto/cn_aux.hpp \
cryptonote/src/crypto/coin_algos.hpp \
cryptonote/src/crypto/crypto-ops.h \
cryptonote/src/crypto/crypto.h \
cryptonote/src/crypto/cryptonight.hpp \
cryptonote/src/crypto/generic-ops.h \
cryptonote/src/crypto/hash-ops.h \
cryptonote/src/crypto/hash.h \
cryptonote/src/crypto/initializer.h \
cryptonote/src/crypto/keccak.h \
cryptonote/src/crypto/random.h \
cryptonote/src/crypto/randomize.h \
cryptonote/src/crypto/soft_aes.hpp \
cryptonote/src/crypto/sse2neon.h \
cryptonote/src/CryptoNoteCore/Account.h \
cryptonote/src/CryptoNoteCore/Blockchain.h \
cryptonote/src/CryptoNoteCore/BlockchainIndices.h \
cryptonote/src/CryptoNoteCore/BlockchainMessages.h \
cryptonote/src/CryptoNoteCore/BlockIndex.h \
cryptonote/src/CryptoNoteCore/Checkpoints.h \
cryptonote/src/CryptoNoteCore/Core.h \
cryptonote/src/CryptoNoteCore/CoreConfig.h \
cryptonote/src/CryptoNoteCore/CryptoNoteBasic.h \
cryptonote/src/CryptoNoteCore/CryptoNoteBasicImpl.h \
cryptonote/src/CryptoNoteCore/CryptoNoteFormatUtils.h \
cryptonote/src/CryptoNoteCore/CryptoNoteSerialization.h \
cryptonote/src/CryptoNoteCore/CryptoNoteStatInfo.h \
cryptonote/src/CryptoNoteCore/CryptoNoteTools.h \
cryptonote/src/CryptoNoteCore/Currency.h \
cryptonote/src/CryptoNoteCore/DepositIndex.h \
cryptonote/src/CryptoNoteCore/Difficulty.h \
cryptonote/src/CryptoNoteCore/IBlock.h \
cryptonote/src/CryptoNoteCore/IBlockchainStorageObserver.h \
cryptonote/src/CryptoNoteCore/ICore.h \
cryptonote/src/CryptoNoteCore/ICoreObserver.h \
cryptonote/src/CryptoNoteCore/IMinerHandler.h \
cryptonote/src/CryptoNoteCore/IntrusiveLinkedList.h \
cryptonote/src/CryptoNoteCore/InvestmentIndex.h \
cryptonote/src/CryptoNoteCore/ITimeProvider.h \
cryptonote/src/CryptoNoteCore/ITransactionValidator.h \
cryptonote/src/CryptoNoteCore/ITxPoolObserver.h \
cryptonote/src/CryptoNoteCore/MessageQueue.h \
cryptonote/src/CryptoNoteCore/Miner.h \
cryptonote/src/CryptoNoteCore/MinerConfig.h \
cryptonote/src/CryptoNoteCore/OnceInInterval.h \
cryptonote/src/CryptoNoteCore/SwappedMap.h \
cryptonote/src/CryptoNoteCore/SwappedVector.h \
cryptonote/src/CryptoNoteCore/TransactionApi.h \
cryptonote/src/CryptoNoteCore/TransactionApiExtra.h \
cryptonote/src/CryptoNoteCore/TransactionExtra.h \
cryptonote/src/CryptoNoteCore/TransactionPool.h \
cryptonote/src/CryptoNoteCore/TransactionUtils.h \
cryptonote/src/CryptoNoteCore/UpgradeDetector.h \
cryptonote/src/CryptoNoteCore/VerificationContext.h \
cryptonote/src/CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h \
cryptonote/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.h \
cryptonote/src/CryptoNoteProtocol/CryptoNoteProtocolHandlerCommon.h \
cryptonote/src/CryptoNoteProtocol/ICryptoNoteProtocolObserver.h \
cryptonote/src/CryptoNoteProtocol/ICryptoNoteProtocolQuery.h \
cryptonote/src/Daemon/DaemonCommandsHandler.h \
cryptonote/src/HTTP/HttpParser.h \
cryptonote/src/HTTP/HttpParserErrorCodes.h \
cryptonote/src/HTTP/HttpRequest.h \
cryptonote/src/HTTP/HttpResponse.h \
cryptonote/src/InProcessNode/InProcessNode.h \
cryptonote/src/InProcessNode/InProcessNodeErrors.h \
cryptonote/src/JsonRpcServer/JsonRpcServer.h \
cryptonote/src/Logging/CommonLogger.h \
cryptonote/src/Logging/ConsoleLogger.h \
cryptonote/src/Logging/FileLogger.h \
cryptonote/src/Logging/ILogger.h \
cryptonote/src/Logging/LoggerGroup.h \
cryptonote/src/Logging/LoggerManager.h \
cryptonote/src/Logging/LoggerMessage.h \
cryptonote/src/Logging/LoggerRef.h \
cryptonote/src/Logging/StreamLogger.h \
cryptonote/src/Miner/BlockchainMonitor.h \
cryptonote/src/Miner/Miner.h \
cryptonote/src/Miner/MinerEvent.h \
cryptonote/src/Miner/MinerManager.h \
cryptonote/src/Miner/MiningConfig.h \
cryptonote/src/Mnemonics/chinese_simplified.h \
cryptonote/src/Mnemonics/dutch.h \
cryptonote/src/Mnemonics/electrum-words.h \
cryptonote/src/Mnemonics/english.h \
cryptonote/src/Mnemonics/english_old.h \
cryptonote/src/Mnemonics/esperanto.h \
cryptonote/src/Mnemonics/french.h \
cryptonote/src/Mnemonics/german.h \
cryptonote/src/Mnemonics/italian.h \
cryptonote/src/Mnemonics/japanese.h \
cryptonote/src/Mnemonics/language_base.h \
cryptonote/src/Mnemonics/lojban.h \
cryptonote/src/Mnemonics/portuguese.h \
cryptonote/src/Mnemonics/russian.h \
cryptonote/src/Mnemonics/singleton.h \
cryptonote/src/Mnemonics/spanish.h \
cryptonote/src/NodeRpcProxy/NodeErrors.h \
cryptonote/src/NodeRpcProxy/NodeRpcProxy.h \
cryptonote/src/P2p/ConnectionContext.h \
cryptonote/src/P2p/IP2pNodeInternal.h \
cryptonote/src/P2p/LevinProtocol.h \
cryptonote/src/P2p/NetNode.h \
cryptonote/src/P2p/NetNodeCommon.h \
cryptonote/src/P2p/NetNodeConfig.h \
cryptonote/src/P2p/P2pConnectionProxy.h \
cryptonote/src/P2p/P2pContext.h \
cryptonote/src/P2p/P2pContextOwner.h \
cryptonote/src/P2p/P2pInterfaces.h \
cryptonote/src/P2p/P2pNetworks.h \
cryptonote/src/P2p/P2pNode.h \
cryptonote/src/P2p/P2pNodeConfig.h \
cryptonote/src/P2p/P2pProtocolDefinitions.h \
cryptonote/src/P2p/P2pProtocolTypes.h \
cryptonote/src/P2p/PeerListManager.h \
cryptonote/src/P2p/PendingLiteBlock.h \
cryptonote/src/PaymentGate/NodeFactory.h \
cryptonote/src/PaymentGate/PaymentServiceJsonRpcMessages.h \
cryptonote/src/PaymentGate/PaymentServiceJsonRpcServer.h \
cryptonote/src/PaymentGate/WalletService.h \
cryptonote/src/PaymentGate/WalletServiceErrorCategory.h \
cryptonote/src/PaymentGateService/ConfigurationManager.h \
cryptonote/src/PaymentGateService/PaymentGateService.h \
cryptonote/src/PaymentGateService/PaymentServiceConfiguration.h \
cryptonote/src/PaymentGateService/RpcNodeConfiguration.h \
cryptonote/src/Rpc/CoreRpcServerCommandsDefinitions.h \
cryptonote/src/Rpc/CoreRpcServerErrorCodes.h \
cryptonote/src/Rpc/HttpClient.h \
cryptonote/src/Rpc/HttpServer.h \
cryptonote/src/Rpc/JsonRpc.h \
cryptonote/src/Rpc/RpcServer.h \
cryptonote/src/Rpc/RpcServerConfig.h \
cryptonote/src/Serialization/BinaryInputStreamSerializer.h \
cryptonote/src/Serialization/BinaryOutputStreamSerializer.h \
cryptonote/src/Serialization/BinarySerializationTools.h \
cryptonote/src/Serialization/ISerializer.h \
cryptonote/src/Serialization/IStream.h \
cryptonote/src/Serialization/JsonInputStreamSerializer.h \
cryptonote/src/Serialization/JsonInputValueSerializer.h \
cryptonote/src/Serialization/JsonOutputStreamSerializer.h \
cryptonote/src/Serialization/KVBinaryCommon.h \
cryptonote/src/Serialization/KVBinaryInputStreamSerializer.h \
cryptonote/src/Serialization/KVBinaryOutputStreamSerializer.h \
cryptonote/src/Serialization/MemoryStream.h \
cryptonote/src/Serialization/SerializationOverloads.h \
cryptonote/src/Serialization/SerializationTools.h \
cryptonote/src/SimpleWallet/PasswordContainer.h \
cryptonote/src/SimpleWallet/SimpleWallet.h \
cryptonote/src/System/Context.h \
cryptonote/src/System/ContextGroup.h \
cryptonote/src/System/ContextGroupTimeout.h \
cryptonote/src/System/Event.h \
cryptonote/src/System/EventLock.h \
cryptonote/src/System/InterruptedException.h \
cryptonote/src/System/Ipv4Address.h \
cryptonote/src/System/OperationTimeout.h \
cryptonote/src/System/RemoteContext.h \
cryptonote/src/System/RemoteEventLock.h \
cryptonote/src/System/TcpStream.h \
cryptonote/src/Transfers/BlockchainSynchronizer.h \
cryptonote/src/Transfers/CommonTypes.h \
cryptonote/src/Transfers/IBlockchainSynchronizer.h \
cryptonote/src/Transfers/IObservableImpl.h \
cryptonote/src/Transfers/SynchronizationState.h \
cryptonote/src/Transfers/TransfersConsumer.h \
cryptonote/src/Transfers/TransfersContainer.h \
cryptonote/src/Transfers/TransfersSubscription.h \
cryptonote/src/Transfers/TransfersSynchronizer.h \
cryptonote/src/Transfers/TypeHelpers.h \
cryptonote/src/Wallet/IFusionManager.h \
cryptonote/src/Wallet/LegacyKeysImporter.h \
cryptonote/src/Wallet/PoolRpcServer.h \
cryptonote/src/Wallet/WalletAsyncContextCounter.h \
cryptonote/src/Wallet/WalletErrors.h \
cryptonote/src/Wallet/WalletGreen.h \
cryptonote/src/Wallet/WalletIndices.h \
cryptonote/src/Wallet/WalletRpcServer.h \
cryptonote/src/Wallet/WalletRpcServerCommandsDefinitions.h \
cryptonote/src/Wallet/WalletRpcServerErrorCodes.h \
cryptonote/src/Wallet/WalletSerializationV1.h \
cryptonote/src/Wallet/WalletSerializationV2.h \
cryptonote/src/Wallet/WalletUtils.h \
cryptonote/src/WalletLegacy/KeysStorage.h \
cryptonote/src/WalletLegacy/WalletDepositInfo.h \
cryptonote/src/WalletLegacy/WalletHelper.h \
cryptonote/src/WalletLegacy/WalletLegacy.h \
cryptonote/src/WalletLegacy/WalletLegacyEvent.h \
cryptonote/src/WalletLegacy/WalletLegacySerialization.h \
cryptonote/src/WalletLegacy/WalletLegacySerializer.h \
cryptonote/src/WalletLegacy/WalletRequest.h \
cryptonote/src/WalletLegacy/WalletSendTransactionContext.h \
cryptonote/src/WalletLegacy/WalletTransactionSender.h \
cryptonote/src/WalletLegacy/WalletUnconfirmedTransactions.h \
cryptonote/src/WalletLegacy/WalletUserTransactionsCache.h \
cryptonote/src/WalletLegacy/WalletUtils.h \
cryptonote/tests/CoreTests/AccountBoostSerialization.h \
cryptonote/tests/CoreTests/BlockReward.h \
cryptonote/tests/CoreTests/BlockValidation.h \
cryptonote/tests/CoreTests/BoostSerializationHelper.h \
cryptonote/tests/CoreTests/Chaingen.h \
cryptonote/tests/CoreTests/Chaingen001.h \
cryptonote/tests/CoreTests/ChainSplit1.h \
cryptonote/tests/CoreTests/ChainSwitch1.h \
cryptonote/tests/CoreTests/CryptoNoteBoostSerialization.h \
cryptonote/tests/CoreTests/Deposit.h \
cryptonote/tests/CoreTests/DoubleSpend.h \
cryptonote/tests/CoreTests/IntegerOverflow.h \
cryptonote/tests/CoreTests/RandomOuts.h \
cryptonote/tests/CoreTests/RingSignature.h \
cryptonote/tests/CoreTests/TestGenerator.h \
cryptonote/tests/CoreTests/TransactionBuilder.h \
cryptonote/tests/CoreTests/TransactionTests.h \
cryptonote/tests/CoreTests/TransactionValidation.h \
cryptonote/tests/CoreTests/UnorderedContainersBoostSerialization.h \
cryptonote/tests/CoreTests/Upgrade.h \
cryptonote/tests/crypto/crypto-tests.h \
cryptonote/tests/IntegrationTestLib/BaseFunctionalTests.h \
cryptonote/tests/IntegrationTestLib/InProcTestNode.h \
cryptonote/tests/IntegrationTestLib/Logger.h \
cryptonote/tests/IntegrationTestLib/NetworkConfiguration.h \
cryptonote/tests/IntegrationTestLib/NodeCallback.h \
cryptonote/tests/IntegrationTestLib/NodeObserver.h \
cryptonote/tests/IntegrationTestLib/ObservableValue.h \
cryptonote/tests/IntegrationTestLib/Process.h \
cryptonote/tests/IntegrationTestLib/RPCTestNode.h \
cryptonote/tests/IntegrationTestLib/TestNetwork.h \
cryptonote/tests/IntegrationTestLib/TestNode.h \
cryptonote/tests/IntegrationTestLib/TestWalletLegacy.h \
cryptonote/tests/IntegrationTests/BaseTests.h \
cryptonote/tests/IntegrationTests/WalletLegacyObserver.h \
cryptonote/tests/PerformanceTests/CheckRingSignature.h \
cryptonote/tests/PerformanceTests/ConstructTransaction.h \
cryptonote/tests/PerformanceTests/CryptoNoteSlowHash.h \
cryptonote/tests/PerformanceTests/DerivePublicKey.h \
cryptonote/tests/PerformanceTests/DeriveSecretKey.h \
cryptonote/tests/PerformanceTests/GenerateKeyDerivation.h \
cryptonote/tests/PerformanceTests/GenerateKeyImage.h \
cryptonote/tests/PerformanceTests/GenerateKeyImageHelper.h \
cryptonote/tests/PerformanceTests/IsOutToAccount.h \
cryptonote/tests/PerformanceTests/MultiTransactionTestBase.h \
cryptonote/tests/PerformanceTests/PerformanceTests.h \
cryptonote/tests/PerformanceTests/PerformanceUtils.h \
cryptonote/tests/PerformanceTests/SingleTransactionTestBase.h \
cryptonote/tests/TestGenerator/TestGenerator.h \
cryptonote/tests/TransfersTests/Globals.h \
cryptonote/tests/UnitTests/EventWaiter.h \
cryptonote/tests/UnitTests/ICoreStub.h \
cryptonote/tests/UnitTests/ICryptoNoteProtocolQueryStub.h \
cryptonote/tests/UnitTests/INodeStubs.h \
cryptonote/tests/UnitTests/TestBlockchainGenerator.h \
cryptonote/tests/UnitTests/TransactionApiHelpers.h \
cryptonote/tests/UnitTests/TransfersObserver.h \
cryptonote/tests/UnitTests/UnitTestsUtils.h \
cryptonote/external/google/sparsehash/densehashtable.h \
cryptonote/external/google/sparsehash/hashtable-common.h \
cryptonote/external/google/sparsehash/libc_allocator_with_realloc.h \
cryptonote/external/google/sparsehash/os_config.h \
cryptonote/external/google/sparsehash/sparseconfig.h \
cryptonote/external/google/sparsehash/sparseconfig_win.h \
cryptonote/external/google/sparsehash/sparsehashtable.h \
cryptonote/external/gtest/samples/prime_tables.h \
cryptonote/external/gtest/samples/sample1.h \
cryptonote/external/gtest/samples/sample2.h \
cryptonote/external/gtest/samples/sample3-inl.h \
cryptonote/external/gtest/samples/sample4.h \
cryptonote/external/gtest/src/gtest-internal-inl.h \
cryptonote/external/gtest/test/gtest-param-test_test.h \
cryptonote/external/gtest/test/gtest-typed-test_test.h \
cryptonote/external/gtest/test/production.h \
cryptonote/src/crypto/pow_hash/arm8_neon.hpp \
cryptonote/src/crypto/pow_hash/arm_vfp.hpp \
cryptonote/src/crypto/pow_hash/aux_hash.h \
cryptonote/src/crypto/pow_hash/cn_slow_hash.hpp \
cryptonote/src/crypto/pow_hash/hw_detect.hpp \
cryptonote/src/Platform/mingw/alloca.h \
cryptonote/src/Platform/msc/alloca.h \
cryptonote/src/Platform/msc/stdbool.h \
cryptonote/external/gtest/include/gtest/gtest-death-test.h \
cryptonote/external/gtest/include/gtest/gtest-message.h \
cryptonote/external/gtest/include/gtest/gtest-param-test.h \
cryptonote/external/gtest/include/gtest/gtest-printers.h \
cryptonote/external/gtest/include/gtest/gtest-spi.h \
cryptonote/external/gtest/include/gtest/gtest-test-part.h \
cryptonote/external/gtest/include/gtest/gtest-typed-test.h \
cryptonote/external/gtest/include/gtest/gtest.h \
cryptonote/external/gtest/include/gtest/gtest_pred_impl.h \
cryptonote/external/gtest/include/gtest/gtest_prod.h \
cryptonote/src/Platform/Linux/System/Dispatcher.h \
cryptonote/src/Platform/Linux/System/ErrorMessage.h \
cryptonote/src/Platform/Linux/System/Future.h \
cryptonote/src/Platform/Linux/System/Ipv4Resolver.h \
cryptonote/src/Platform/Linux/System/MemoryMappedFile.h \
cryptonote/src/Platform/Linux/System/TcpConnection.h \
cryptonote/src/Platform/Linux/System/TcpConnector.h \
cryptonote/src/Platform/Linux/System/TcpListener.h \
cryptonote/src/Platform/Linux/System/Timer.h \
cryptonote/src/Platform/msc/sys/param.h \
cryptonote/src/Platform/OSX/System/Context.h \
cryptonote/src/Platform/OSX/System/Dispatcher.h \
cryptonote/src/Platform/OSX/System/ErrorMessage.h \
cryptonote/src/Platform/OSX/System/Future.h \
cryptonote/src/Platform/OSX/System/Ipv4Resolver.h \
cryptonote/src/Platform/OSX/System/MemoryMappedFile.h \
cryptonote/src/Platform/OSX/System/TcpConnection.h \
cryptonote/src/Platform/OSX/System/TcpConnector.h \
cryptonote/src/Platform/OSX/System/TcpListener.h \
cryptonote/src/Platform/OSX/System/Timer.h \
cryptonote/src/Platform/Windows/System/Dispatcher.h \
cryptonote/src/Platform/Windows/System/ErrorMessage.h \
cryptonote/src/Platform/Windows/System/Future.h \
cryptonote/src/Platform/Windows/System/Ipv4Resolver.h \
cryptonote/src/Platform/Windows/System/MemoryMappedFile.h \
cryptonote/src/Platform/Windows/System/TcpConnection.h \
cryptonote/src/Platform/Windows/System/TcpConnector.h \
cryptonote/src/Platform/Windows/System/TcpListener.h \
cryptonote/src/Platform/Windows/System/Timer.h \
cryptonote/external/gtest/include/gtest/internal/gtest-death-test-internal.h \
cryptonote/external/gtest/include/gtest/internal/gtest-filepath.h \
cryptonote/external/gtest/include/gtest/internal/gtest-internal.h \
cryptonote/external/gtest/include/gtest/internal/gtest-linked_ptr.h \
cryptonote/external/gtest/include/gtest/internal/gtest-param-util-generated.h \
cryptonote/external/gtest/include/gtest/internal/gtest-param-util.h \
cryptonote/external/gtest/include/gtest/internal/gtest-port-arch.h \
cryptonote/external/gtest/include/gtest/internal/gtest-port.h \
cryptonote/external/gtest/include/gtest/internal/gtest-string.h \
cryptonote/external/gtest/include/gtest/internal/gtest-tuple.h \
cryptonote/external/gtest/include/gtest/internal/gtest-type-util.h \
cryptonote/external/gtest/xcode/Samples/FrameworkSample/widget.h \
cryptonote/external/gtest/include/gtest/internal/custom/gtest-port.h \
cryptonote/external/gtest/include/gtest/internal/custom/gtest-printers.h \
cryptonote/external/gtest/include/gtest/internal/custom/gtest.h
FORMS += src/gui/ui/addressbookdialog.ui \
src/gui/ui/changepassworddialog.ui \
src/gui/ui/depositdetailsdialog.ui \
src/gui/ui/exitwidget.ui \
src/gui/ui/importguikeydialog.ui \
src/gui/ui/importsecretkeys.ui \
src/gui/ui/importseeddialog.ui \
src/gui/ui/importtracking.ui \
src/gui/ui/mainpassworddialog.ui \
src/gui/ui/mainwindow.ui \
src/gui/ui/messagedetailsdialog.ui \
src/gui/ui/newaddressdialog.ui \
src/gui/ui/newpassworddialog.ui \
src/gui/ui/notification.ui \
src/gui/ui/overviewframe.ui \
src/gui/ui/passworddialog.ui \
src/gui/ui/receiveframe.ui \
src/gui/ui/showqrcode.ui \
src/gui/ui/transactiondetailsdialog.ui \
src/gui/ui/transactionframe.ui \
src/gui/ui/welcomeframe.ui
SOURCES += libqrencode/bitstream.c \
libqrencode/mask.c \
libqrencode/mmask.c \
libqrencode/mqrspec.c \
libqrencode/qrenc.c \
libqrencode/qrencode.c \
libqrencode/qrinput.c \
libqrencode/qrspec.c \
libqrencode/rsecc.c \
libqrencode/split.c \
src/AddressProvider.cpp \
src/AliasProvider.cpp \
src/CommandLineParser.cpp \
src/CryptoNoteWrapper.cpp \
src/CurrencyAdapter.cpp \
src/ExchangeProvider.cpp \
src/LogFileWatcher.cpp \
src/LoggerAdapter.cpp \
src/main.cpp \
src/NodeAdapter.cpp \
src/OptimizationManager.cpp \
src/PriceProvider.cpp \
src/Settings.cpp \
src/SignalHandler.cpp \
src/TranslatorManager.cpp \
src/UpdateManager.cpp \
src/WalletAdapter.cpp \
cryptonote/tests/HashTarget.cpp \
libqrencode/tests/common.c \
libqrencode/tests/create_frame_pattern.c \
libqrencode/tests/create_mqr_frame_pattern.c \
libqrencode/tests/datachunk.c \
libqrencode/tests/decoder.c \
libqrencode/tests/prof_qrencode.c \
libqrencode/tests/pthread_qrencode.c \
libqrencode/tests/rscode.c \
libqrencode/tests/rsecc_decoder.c \
libqrencode/tests/test_bitstream.c \
libqrencode/tests/test_estimatebit.c \
libqrencode/tests/test_mask.c \
libqrencode/tests/test_mmask.c \
libqrencode/tests/test_monkey.c \
libqrencode/tests/test_mqrspec.c \
libqrencode/tests/test_qrencode.c \
libqrencode/tests/test_qrinput.c \
libqrencode/tests/test_qrspec.c \
libqrencode/tests/test_rs.c \
libqrencode/tests/test_split.c \
libqrencode/tests/test_split_urls.c \
libqrencode/tests/view_qrcode.c \
src/gui/AddressBookDialog.cpp \
src/gui/AddressBookModel.cpp \
src/gui/AddressListModel.cpp \
src/gui/AnimatedLabel.cpp \
src/gui/ChangePasswordDialog.cpp \
src/gui/DepositDetailsDialog.cpp \
src/gui/DepositListModel.cpp \
src/gui/DepositModel.cpp \
src/gui/EditableStyle.cpp \
src/gui/ExitWidget.cpp \
src/gui/ImportGUIKeyDialog.cpp \
src/gui/ImportSecretKeys.cpp \
src/gui/ImportSeedDialog.cpp \
src/gui/ImportTracking.cpp \
src/gui/MainPasswordDialog.cpp \
src/gui/MainWindow.cpp \
src/gui/Message.cpp \
src/gui/MessageDetailsDialog.cpp \
src/gui/MessagesModel.cpp \
src/gui/NewAddressDialog.cpp \
src/gui/NewPasswordDialog.cpp \
src/gui/Notification.cpp \
src/gui/OverviewFrame.cpp \
src/gui/PasswordDialog.cpp \
src/gui/QRLabel.cpp \
src/gui/ReceiveFrame.cpp \
src/gui/RecentTransactionsModel.cpp \
src/gui/ShowQRCode.cpp \
src/gui/SortedAddressListModel.cpp \
src/gui/SortedDepositModel.cpp \
src/gui/SortedMessagesModel.cpp \
src/gui/SortedTransactionsModel.cpp \
src/gui/SplashScreen.cpp \
src/gui/TransactionDetailsDialog.cpp \
src/gui/TransactionFrame.cpp \
src/gui/TransactionsListModel.cpp \
src/gui/TransactionsModel.cpp \
src/gui/VisibleMessagesModel.cpp \
src/gui/WelcomeFrame.cpp \
cryptonote/external/miniupnpc/connecthostport.c \
cryptonote/external/miniupnpc/igd_desc_parse.c \
cryptonote/external/miniupnpc/minihttptestserver.c \
cryptonote/external/miniupnpc/minisoap.c \
cryptonote/external/miniupnpc/minissdpc.c \
cryptonote/external/miniupnpc/miniupnpc.c \
cryptonote/external/miniupnpc/miniupnpcmodule.c \
cryptonote/external/miniupnpc/miniwget.c \
cryptonote/external/miniupnpc/minixml.c \
cryptonote/external/miniupnpc/minixmlvalid.c \
cryptonote/external/miniupnpc/portlistingparse.c \
cryptonote/external/miniupnpc/receivedata.c \
cryptonote/external/miniupnpc/testigddescparse.c \
cryptonote/external/miniupnpc/testminiwget.c \
cryptonote/external/miniupnpc/testminixml.c \
cryptonote/external/miniupnpc/testupnpreplyparse.c \
cryptonote/external/miniupnpc/upnpc.c \
cryptonote/external/miniupnpc/upnpcommands.c \
cryptonote/external/miniupnpc/upnperrors.c \
cryptonote/external/miniupnpc/upnpreplyparse.c \
cryptonote/external/miniupnpc/wingenminiupnpcstrings.c \
cryptonote/src/BlockchainExplorer/BlockchainExplorer.cpp \
cryptonote/src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp \
cryptonote/src/BlockchainExplorer/BlockchainExplorerErrors.cpp \
cryptonote/src/Common/Base58.cpp \
cryptonote/src/Common/Base64.cpp \
cryptonote/src/Common/BlockingQueue.cpp \
cryptonote/src/Common/CommandLine.cpp \
cryptonote/src/Common/ConsoleHandler.cpp \
cryptonote/src/Common/ConsoleTools.cpp \
cryptonote/src/Common/DnsTools.cpp \
cryptonote/src/Common/FileMappedVector.cpp \
cryptonote/src/Common/IInputStream.cpp \
cryptonote/src/Common/IOutputStream.cpp \
cryptonote/src/Common/JsonValue.cpp \
cryptonote/src/Common/Math.cpp \
cryptonote/src/Common/MemoryInputStream.cpp \
cryptonote/src/Common/PathTools.cpp \
cryptonote/src/Common/ScopeExit.cpp \
cryptonote/src/Common/SignalHandler.cpp \
cryptonote/src/Common/StdInputStream.cpp \
cryptonote/src/Common/StdOutputStream.cpp \
cryptonote/src/Common/StreamTools.cpp \
cryptonote/src/Common/StringInputStream.cpp \
cryptonote/src/Common/StringOutputStream.cpp \
cryptonote/src/Common/StringTools.cpp \
cryptonote/src/Common/StringView.cpp \
cryptonote/src/Common/Util.cpp \
cryptonote/src/Common/VectorOutputStream.cpp \
cryptonote/src/ConnectivityTool/ConnectivityTool.cpp \
cryptonote/src/crypto/aux_hash.c \
cryptonote/src/crypto/chacha8.c \
cryptonote/src/crypto/crypto-ops-data.c \
cryptonote/src/crypto/crypto-ops.c \
cryptonote/src/crypto/crypto.cpp \
cryptonote/src/crypto/cryptonight.cpp \
cryptonote/src/crypto/hash.c \
cryptonote/src/crypto/keccak.c \
cryptonote/src/crypto/random.c \
cryptonote/src/crypto/tree-hash.c \
cryptonote/src/CryptoNoteCore/Account.cpp \
cryptonote/src/CryptoNoteCore/Blockchain.cpp \
cryptonote/src/CryptoNoteCore/BlockchainIndices.cpp \
cryptonote/src/CryptoNoteCore/BlockchainMessages.cpp \
cryptonote/src/CryptoNoteCore/BlockIndex.cpp \
cryptonote/src/CryptoNoteCore/Checkpoints.cpp \
cryptonote/src/CryptoNoteCore/Core.cpp \
cryptonote/src/CryptoNoteCore/CoreConfig.cpp \
cryptonote/src/CryptoNoteCore/CryptoNoteBasic.cpp \
cryptonote/src/CryptoNoteCore/CryptoNoteBasicImpl.cpp \
cryptonote/src/CryptoNoteCore/CryptoNoteFormatUtils.cpp \
cryptonote/src/CryptoNoteCore/CryptoNoteSerialization.cpp \
cryptonote/src/CryptoNoteCore/CryptoNoteTools.cpp \
cryptonote/src/CryptoNoteCore/Currency.cpp \
cryptonote/src/CryptoNoteCore/DepositIndex.cpp \
cryptonote/src/CryptoNoteCore/Difficulty.cpp \
cryptonote/src/CryptoNoteCore/IBlock.cpp \
cryptonote/src/CryptoNoteCore/InvestmentIndex.cpp \
cryptonote/src/CryptoNoteCore/ITimeProvider.cpp \
cryptonote/src/CryptoNoteCore/Miner.cpp \
cryptonote/src/CryptoNoteCore/MinerConfig.cpp \
cryptonote/src/CryptoNoteCore/SwappedMap.cpp \
cryptonote/src/CryptoNoteCore/SwappedVector.cpp \
cryptonote/src/CryptoNoteCore/Transaction.cpp \
cryptonote/src/CryptoNoteCore/TransactionExtra.cpp \
cryptonote/src/CryptoNoteCore/TransactionPool.cpp \
cryptonote/src/CryptoNoteCore/TransactionPrefixImpl.cpp \
cryptonote/src/CryptoNoteCore/TransactionUtils.cpp \
cryptonote/src/CryptoNoteCore/UpgradeDetector.cpp \
cryptonote/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.cpp \
cryptonote/src/Daemon/Daemon.cpp \
cryptonote/src/Daemon/DaemonCommandsHandler.cpp \
cryptonote/src/HTTP/HttpParser.cpp \
cryptonote/src/HTTP/HttpParserErrorCodes.cpp \
cryptonote/src/HTTP/HttpRequest.cpp \
cryptonote/src/HTTP/HttpResponse.cpp \
cryptonote/src/InProcessNode/InProcessNode.cpp \
cryptonote/src/InProcessNode/InProcessNodeErrors.cpp \
cryptonote/src/JsonRpcServer/JsonRpcServer.cpp \
cryptonote/src/Logging/CommonLogger.cpp \
cryptonote/src/Logging/ConsoleLogger.cpp \
cryptonote/src/Logging/FileLogger.cpp \
cryptonote/src/Logging/ILogger.cpp \
cryptonote/src/Logging/LoggerGroup.cpp \
cryptonote/src/Logging/LoggerManager.cpp \
cryptonote/src/Logging/LoggerMessage.cpp \
cryptonote/src/Logging/LoggerRef.cpp \
cryptonote/src/Logging/StreamLogger.cpp \
cryptonote/src/Miner/BlockchainMonitor.cpp \
cryptonote/src/Miner/main.cpp \
cryptonote/src/Miner/Miner.cpp \
cryptonote/src/Miner/MinerManager.cpp \
cryptonote/src/Miner/MiningConfig.cpp \
cryptonote/src/Mnemonics/electrum-words.cpp \
cryptonote/src/NodeRpcProxy/NodeErrors.cpp \
cryptonote/src/NodeRpcProxy/NodeRpcProxy.cpp \
cryptonote/src/Optimizer/Optimizer.cpp \
cryptonote/src/P2p/IP2pNodeInternal.cpp \
cryptonote/src/P2p/LevinProtocol.cpp \
cryptonote/src/P2p/NetNode.cpp \
cryptonote/src/P2p/NetNodeConfig.cpp \
cryptonote/src/P2p/P2pConnectionProxy.cpp \
cryptonote/src/P2p/P2pContext.cpp \
cryptonote/src/P2p/P2pContextOwner.cpp \
cryptonote/src/P2p/P2pInterfaces.cpp \
cryptonote/src/P2p/P2pNode.cpp \
cryptonote/src/P2p/P2pNodeConfig.cpp \
cryptonote/src/P2p/PeerListManager.cpp \
cryptonote/src/PaymentGate/NodeFactory.cpp \
cryptonote/src/PaymentGate/PaymentServiceJsonRpcMessages.cpp \
cryptonote/src/PaymentGate/PaymentServiceJsonRpcServer.cpp \
cryptonote/src/PaymentGate/WalletService.cpp \
cryptonote/src/PaymentGate/WalletServiceErrorCategory.cpp \
cryptonote/src/PaymentGateService/ConfigurationManager.cpp \
cryptonote/src/PaymentGateService/main.cpp \
cryptonote/src/PaymentGateService/PaymentGateService.cpp \
cryptonote/src/PaymentGateService/PaymentServiceConfiguration.cpp \
cryptonote/src/PaymentGateService/RpcNodeConfiguration.cpp \
cryptonote/src/Rpc/HttpClient.cpp \
cryptonote/src/Rpc/HttpServer.cpp \
cryptonote/src/Rpc/JsonRpc.cpp \
cryptonote/src/Rpc/RpcServer.cpp \
cryptonote/src/Rpc/RpcServerConfig.cpp \
cryptonote/src/Serialization/BinaryInputStreamSerializer.cpp \
cryptonote/src/Serialization/BinaryOutputStreamSerializer.cpp \
cryptonote/src/Serialization/JsonInputStreamSerializer.cpp \
cryptonote/src/Serialization/JsonInputValueSerializer.cpp \
cryptonote/src/Serialization/JsonOutputStreamSerializer.cpp \
cryptonote/src/Serialization/KVBinaryInputStreamSerializer.cpp \
cryptonote/src/Serialization/KVBinaryOutputStreamSerializer.cpp \
cryptonote/src/Serialization/MemoryStream.cpp \
cryptonote/src/Serialization/SerializationOverloads.cpp \
cryptonote/src/SimpleWallet/PasswordContainer.cpp \
cryptonote/src/SimpleWallet/SimpleWallet.cpp \
cryptonote/src/System/ContextGroup.cpp \
cryptonote/src/System/ContextGroupTimeout.cpp \
cryptonote/src/System/Event.cpp \
cryptonote/src/System/EventLock.cpp \
cryptonote/src/System/InterruptedException.cpp \
cryptonote/src/System/Ipv4Address.cpp \
cryptonote/src/System/RemoteEventLock.cpp \
cryptonote/src/System/TcpStream.cpp \
cryptonote/src/Transfers/BlockchainSynchronizer.cpp \
cryptonote/src/Transfers/SynchronizationState.cpp \
cryptonote/src/Transfers/TransfersConsumer.cpp \
cryptonote/src/Transfers/TransfersContainer.cpp \
cryptonote/src/Transfers/TransfersSubscription.cpp \
cryptonote/src/Transfers/TransfersSynchronizer.cpp \
cryptonote/src/Wallet/LegacyKeysImporter.cpp \
cryptonote/src/Wallet/PoolRpcServer.cpp \
cryptonote/src/Wallet/WalletAsyncContextCounter.cpp \
cryptonote/src/Wallet/WalletErrors.cpp \
cryptonote/src/Wallet/WalletGreen.cpp \
cryptonote/src/Wallet/WalletRpcServer.cpp \
cryptonote/src/Wallet/WalletSerializationV1.cpp \
cryptonote/src/Wallet/WalletSerializationV2.cpp \
cryptonote/src/Wallet/WalletUtils.cpp \
cryptonote/src/WalletLegacy/KeysStorage.cpp \
cryptonote/src/WalletLegacy/WalletHelper.cpp \
cryptonote/src/WalletLegacy/WalletLegacy.cpp \
cryptonote/src/WalletLegacy/WalletLegacySerialization.cpp \
cryptonote/src/WalletLegacy/WalletLegacySerializer.cpp \
cryptonote/src/WalletLegacy/WalletTransactionSender.cpp \
cryptonote/src/WalletLegacy/WalletUnconfirmedTransactions.cpp \
cryptonote/src/WalletLegacy/WalletUserTransactionsCache.cpp \
cryptonote/tests/CoreTests/BlockReward.cpp \
cryptonote/tests/CoreTests/BlockValidation.cpp \
cryptonote/tests/CoreTests/Chaingen.cpp \
cryptonote/tests/CoreTests/Chaingen001.cpp \
cryptonote/tests/CoreTests/ChaingenMain.cpp \
cryptonote/tests/CoreTests/ChainSplit1.cpp \
cryptonote/tests/CoreTests/ChainSwitch1.cpp \
cryptonote/tests/CoreTests/Deposit.cpp \
cryptonote/tests/CoreTests/DoubleSpend.cpp \
cryptonote/tests/CoreTests/IntegerOverflow.cpp \
cryptonote/tests/CoreTests/RandomOuts.cpp \
cryptonote/tests/CoreTests/RingSignature.cpp \
cryptonote/tests/CoreTests/TransactionBuilder.cpp \
cryptonote/tests/CoreTests/TransactionTests.cpp \
cryptonote/tests/CoreTests/TransactionValidation.cpp \
cryptonote/tests/CoreTests/Upgrade.cpp \
cryptonote/tests/crypto/crypto-ops-data.c \
cryptonote/tests/crypto/crypto-ops.c \
cryptonote/tests/crypto/crypto.cpp \
cryptonote/tests/crypto/hash.c \
cryptonote/tests/crypto/main.cpp \
cryptonote/tests/crypto/random.c \
cryptonote/tests/Difficulty/Difficulty.cpp \
cryptonote/tests/Hash/main.cpp \
cryptonote/tests/IntegrationTestLib/BaseFunctionalTests.cpp \
cryptonote/tests/IntegrationTestLib/InProcTestNode.cpp \
cryptonote/tests/IntegrationTestLib/Logger.cpp \
cryptonote/tests/IntegrationTestLib/Process.cpp \
cryptonote/tests/IntegrationTestLib/RPCTestNode.cpp \
cryptonote/tests/IntegrationTestLib/TestNetwork.cpp \
cryptonote/tests/IntegrationTestLib/TestWalletLegacy.cpp \
cryptonote/tests/IntegrationTests/IntegrationTests.cpp \
cryptonote/tests/IntegrationTests/main.cpp \
cryptonote/tests/IntegrationTests/MultiVersion.cpp \
cryptonote/tests/IntegrationTests/Node.cpp \
cryptonote/tests/IntegrationTests/WalletLegacyTests.cpp \
cryptonote/tests/NodeRpcProxyTests/NodeRpcProxyTests.cpp \
cryptonote/tests/PerformanceTests/main.cpp \
cryptonote/tests/System/ContextGroupTests.cpp \
cryptonote/tests/System/ContextGroupTimeoutTests.cpp \
cryptonote/tests/System/ContextTests.cpp \
cryptonote/tests/System/DispatcherTests.cpp \
cryptonote/tests/System/ErrorMessageTests.cpp \
cryptonote/tests/System/EventLockTests.cpp \
cryptonote/tests/System/EventTests.cpp \
cryptonote/tests/System/Ipv4AddressTests.cpp \
cryptonote/tests/System/Ipv4ResolverTests.cpp \
cryptonote/tests/System/main.cpp \
cryptonote/tests/System/OperationTimeoutTests.cpp \
cryptonote/tests/System/RemoteContextTests.cpp \
cryptonote/tests/System/TcpConnectionTests.cpp \
cryptonote/tests/System/TcpConnectorTests.cpp \
cryptonote/tests/System/TcpListenerTests.cpp \
cryptonote/tests/System/TimerTests.cpp \
cryptonote/tests/TestGenerator/TestGenerator.cpp \
cryptonote/tests/TransfersTests/main.cpp \
cryptonote/tests/TransfersTests/TestNodeRpcProxy.cpp \
cryptonote/tests/TransfersTests/Tests.cpp \
cryptonote/tests/TransfersTests/TestTxPoolSync.cpp \
cryptonote/tests/UnitTests/ArrayRefTests.cpp \
cryptonote/tests/UnitTests/ArrayViewTests.cpp \
cryptonote/tests/UnitTests/Base58.cpp \
cryptonote/tests/UnitTests/BlockingQueue.cpp \
cryptonote/tests/UnitTests/BlockReward.cpp \
cryptonote/tests/UnitTests/Chacha8.cpp \
cryptonote/tests/UnitTests/Checkpoints.cpp \
cryptonote/tests/UnitTests/DecomposeAmountIntoDigits.cpp \
cryptonote/tests/UnitTests/EventWaiter.cpp \
cryptonote/tests/UnitTests/ICoreStub.cpp \
cryptonote/tests/UnitTests/ICryptoNoteProtocolQueryStub.cpp \
cryptonote/tests/UnitTests/INodeStubs.cpp \
cryptonote/tests/UnitTests/main.cpp \
cryptonote/tests/UnitTests/MulDiv.cpp \
cryptonote/tests/UnitTests/ParseAmount.cpp \
cryptonote/tests/UnitTests/PaymentGateTests.cpp \
cryptonote/tests/UnitTests/Serialization.cpp \
cryptonote/tests/UnitTests/SerializationKV.cpp \
cryptonote/tests/UnitTests/Shuffle.cpp \
cryptonote/tests/UnitTests/StringBufferTests.cpp \
cryptonote/tests/UnitTests/StringViewTests.cpp \
cryptonote/tests/UnitTests/TestBcS.cpp \
cryptonote/tests/UnitTests/TestBlockchainExplorer.cpp \
cryptonote/tests/UnitTests/TestBlockchainGenerator.cpp \
cryptonote/tests/UnitTests/TestCryptonoteBasic.cpp \
cryptonote/tests/UnitTests/TestCurrency.cpp \
cryptonote/tests/UnitTests/TestDepositIndex.cpp \
cryptonote/tests/UnitTests/TestFormatUtils.cpp \
cryptonote/tests/UnitTests/TestInprocessNode.cpp \
cryptonote/tests/UnitTests/TestJsonValue.cpp \
cryptonote/tests/UnitTests/TestMessageQueue.cpp \
cryptonote/tests/UnitTests/TestPath.cpp \
cryptonote/tests/UnitTests/TestPeerlist.cpp \
cryptonote/tests/UnitTests/TestProtocolPack.cpp \
cryptonote/tests/UnitTests/TestTransactionPoolDetach.cpp \
cryptonote/tests/UnitTests/TestTransfers.cpp \
cryptonote/tests/UnitTests/TestTransfersConsumer.cpp \
cryptonote/tests/UnitTests/TestTransfersContainer.cpp \
cryptonote/tests/UnitTests/TestTransfersContainerKeyImage.cpp \
cryptonote/tests/UnitTests/TestTransfersSubscription.cpp \
cryptonote/tests/UnitTests/TestUpgradeDetector.cpp \
cryptonote/tests/UnitTests/TestWallet.cpp \
cryptonote/tests/UnitTests/TestWalletLegacy.cpp \
cryptonote/tests/UnitTests/TestWalletService.cpp \
cryptonote/tests/UnitTests/TestWalletUserTransactionsCache.cpp \
cryptonote/tests/UnitTests/TransactionApi.cpp \
cryptonote/tests/UnitTests/TransactionApiHelpers.cpp \
cryptonote/tests/UnitTests/TransactionPool.cpp \
cryptonote/external/gtest/codegear/gtest_all.cc \
cryptonote/external/gtest/codegear/gtest_link.cc \
cryptonote/external/gtest/samples/sample1.cc \
cryptonote/external/gtest/samples/sample10_unittest.cc \
cryptonote/external/gtest/samples/sample1_unittest.cc \
cryptonote/external/gtest/samples/sample2.cc \
cryptonote/external/gtest/samples/sample2_unittest.cc \
cryptonote/external/gtest/samples/sample3_unittest.cc \
cryptonote/external/gtest/samples/sample4.cc \
cryptonote/external/gtest/samples/sample4_unittest.cc \
cryptonote/external/gtest/samples/sample5_unittest.cc \
cryptonote/external/gtest/samples/sample6_unittest.cc \
cryptonote/external/gtest/samples/sample7_unittest.cc \
cryptonote/external/gtest/samples/sample8_unittest.cc \
cryptonote/external/gtest/samples/sample9_unittest.cc \
cryptonote/external/gtest/src/gtest-all.cc \
cryptonote/external/gtest/src/gtest-death-test.cc \
cryptonote/external/gtest/src/gtest-filepath.cc \
cryptonote/external/gtest/src/gtest-port.cc \
cryptonote/external/gtest/src/gtest-printers.cc \
cryptonote/external/gtest/src/gtest-test-part.cc \
cryptonote/external/gtest/src/gtest-typed-test.cc \
cryptonote/external/gtest/src/gtest.cc \
cryptonote/external/gtest/src/gtest_main.cc \
cryptonote/external/gtest/test/gtest-death-test_ex_test.cc \
cryptonote/external/gtest/test/gtest-death-test_test.cc \
cryptonote/external/gtest/test/gtest-filepath_test.cc \
cryptonote/external/gtest/test/gtest-linked_ptr_test.cc \
cryptonote/external/gtest/test/gtest-listener_test.cc \
cryptonote/external/gtest/test/gtest-message_test.cc \
cryptonote/external/gtest/test/gtest-options_test.cc \
cryptonote/external/gtest/test/gtest-param-test2_test.cc \
cryptonote/external/gtest/test/gtest-param-test_test.cc \
cryptonote/external/gtest/test/gtest-port_test.cc \
cryptonote/external/gtest/test/gtest-printers_test.cc \
cryptonote/external/gtest/test/gtest-test-part_test.cc \
cryptonote/external/gtest/test/gtest-tuple_test.cc \
cryptonote/external/gtest/test/gtest-typed-test2_test.cc \
cryptonote/external/gtest/test/gtest-typed-test_test.cc \
cryptonote/external/gtest/test/gtest-unittest-api_test.cc \
cryptonote/external/gtest/test/gtest_all_test.cc \
cryptonote/external/gtest/test/gtest_break_on_failure_unittest_.cc \
cryptonote/external/gtest/test/gtest_catch_exceptions_test_.cc \
cryptonote/external/gtest/test/gtest_color_test_.cc \
cryptonote/external/gtest/test/gtest_env_var_test_.cc \
cryptonote/external/gtest/test/gtest_environment_test.cc \
cryptonote/external/gtest/test/gtest_filter_unittest_.cc \
cryptonote/external/gtest/test/gtest_help_test_.cc \
cryptonote/external/gtest/test/gtest_list_tests_unittest_.cc \
cryptonote/external/gtest/test/gtest_main_unittest.cc \
cryptonote/external/gtest/test/gtest_no_test_unittest.cc \
cryptonote/external/gtest/test/gtest_output_test_.cc \
cryptonote/external/gtest/test/gtest_pred_impl_unittest.cc \
cryptonote/external/gtest/test/gtest_premature_exit_test.cc \
cryptonote/external/gtest/test/gtest_prod_test.cc \
cryptonote/external/gtest/test/gtest_repeat_test.cc \
cryptonote/external/gtest/test/gtest_shuffle_test_.cc \
cryptonote/external/gtest/test/gtest_sole_header_test.cc \
cryptonote/external/gtest/test/gtest_stress_test.cc \
cryptonote/external/gtest/test/gtest_throw_on_failure_ex_test.cc \
cryptonote/external/gtest/test/gtest_throw_on_failure_test_.cc \
cryptonote/external/gtest/test/gtest_uninitialized_test_.cc \
cryptonote/external/gtest/test/gtest_unittest.cc \
cryptonote/external/gtest/test/gtest_xml_outfile1_test_.cc \
cryptonote/external/gtest/test/gtest_xml_outfile2_test_.cc \
cryptonote/external/gtest/test/gtest_xml_output_unittest_.cc \
cryptonote/external/gtest/test/production.cc \
cryptonote/src/crypto/pow_hash/aux_hash.c \
cryptonote/src/crypto/pow_hash/cn_slow_hash_hard_arm.cpp \
cryptonote/src/crypto/pow_hash/cn_slow_hash_hard_intel.cpp \
cryptonote/src/crypto/pow_hash/cn_slow_hash_intel_avx2.cpp \
cryptonote/src/crypto/pow_hash/cn_slow_hash_soft.cpp \
cryptonote/src/Platform/Linux/System/Dispatcher.cpp \
cryptonote/src/Platform/Linux/System/ErrorMessage.cpp \
cryptonote/src/Platform/Linux/System/Ipv4Resolver.cpp \
cryptonote/src/Platform/Linux/System/MemoryMappedFile.cpp \
cryptonote/src/Platform/Linux/System/TcpConnection.cpp \
cryptonote/src/Platform/Linux/System/TcpConnector.cpp \
cryptonote/src/Platform/Linux/System/TcpListener.cpp \
cryptonote/src/Platform/Linux/System/Timer.cpp \
cryptonote/src/Platform/OSX/System/Context.c \
cryptonote/src/Platform/OSX/System/Dispatcher.cpp \
cryptonote/src/Platform/OSX/System/ErrorMessage.cpp \
cryptonote/src/Platform/OSX/System/Ipv4Resolver.cpp \
cryptonote/src/Platform/OSX/System/MemoryMappedFile.cpp \
cryptonote/src/Platform/OSX/System/TcpConnection.cpp \
cryptonote/src/Platform/OSX/System/TcpConnector.cpp \
cryptonote/src/Platform/OSX/System/TcpListener.cpp \
cryptonote/src/Platform/OSX/System/Timer.cpp \
cryptonote/src/Platform/Windows/System/Dispatcher.cpp \
cryptonote/src/Platform/Windows/System/ErrorMessage.cpp \
cryptonote/src/Platform/Windows/System/Ipv4Resolver.cpp \
cryptonote/src/Platform/Windows/System/MemoryMappedFile.cpp \
cryptonote/src/Platform/Windows/System/TcpConnection.cpp \
cryptonote/src/Platform/Windows/System/TcpConnector.cpp \
cryptonote/src/Platform/Windows/System/TcpListener.cpp \