-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwallet_tests.cpp
More file actions
1088 lines (963 loc) · 47.7 KB
/
Copy pathwallet_tests.cpp
File metadata and controls
1088 lines (963 loc) · 47.7 KB
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
// Copyright (c) 2012-2016 The Bitcoin Core developers
// Copyright (c) 2020-2025 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <chain.h>
#include <chainparams.h>
#include <config.h>
#include <consensus/activation.h>
#include <consensus/validation.h>
#include <interfaces/chain.h>
#include <key.h>
#include <key.h>
#include <key_io.h>
#include <wallet/mnemonic.h>
#include <keystore.h>
#include <node/blockstorage.h>
#include <policy/policy.h>
#include <pubkey.h>
#include <rpc/server.h>
#include <script/sign.h>
#include <util/defer.h>
#include <validation.h>
#include <wallet/coincontrol.h>
#include <wallet/rpcdump.h>
#include <wallet/wallet.h>
#include <test/setup_common.h>
#include <wallet/test/wallet_test_fixture.h>
#include <boost/test/unit_test.hpp>
#include <univalue.h>
#include <algorithm>
#include <array>
#include <cstdint>
#include <cstring>
#include <limits>
#include <memory>
#include <set>
#include <utility>
#include <vector>
BOOST_FIXTURE_TEST_SUITE(wallet_tests, WalletTestingSetup)
static void AddKey(CWallet &wallet, const CKey &key) {
LOCK(wallet.cs_wallet);
wallet.AddKeyPubKey(key, key.GetPubKey());
}
// Note: when backporting PR14957, see PR15321 and ensure both LockAnnotations
// are in place.
BOOST_FIXTURE_TEST_CASE(rescan, TestChain100Setup) {
auto chain = interfaces::MakeChain();
// Cap last block file size, and mine new block in a new block file.
CBlockIndex *oldTip = ::ChainActive().Tip();
GetBlockFileInfo(oldTip->GetBlockPos().nFile)->nSize = MAX_BLOCKFILE_SIZE;
CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
CBlockIndex *newTip = ::ChainActive().Tip();
LockAnnotation lock(::cs_main);
auto locked_chain = chain->lock();
// Verify ScanForWalletTransactions accommodates a null start block.
{
CWallet wallet(Params(), *chain, WalletLocation(),
WalletDatabase::CreateDummy());
AddKey(wallet, coinbaseKey);
WalletRescanReserver reserver(&wallet);
reserver.reserve();
CWallet::ScanResult result = wallet.ScanForWalletTransactions(
BlockHash(), BlockHash(), reserver, false /* update */);
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::SUCCESS);
BOOST_CHECK(result.failed_block.IsNull());
BOOST_CHECK(result.stop_block.IsNull());
BOOST_CHECK(!result.stop_height);
BOOST_CHECK_EQUAL(wallet.GetImmatureBalance(), Amount::zero());
}
// Verify ScanForWalletTransactions picks up transactions in both the old
// and new block files.
{
CWallet wallet(Params(), *chain, WalletLocation(),
WalletDatabase::CreateDummy());
AddKey(wallet, coinbaseKey);
WalletRescanReserver reserver(&wallet);
reserver.reserve();
CWallet::ScanResult result = wallet.ScanForWalletTransactions(
oldTip->GetBlockHash(), BlockHash(), reserver, false /* update */);
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::SUCCESS);
BOOST_CHECK(result.failed_block.IsNull());
BOOST_CHECK_EQUAL(result.stop_block, newTip->GetBlockHash());
BOOST_CHECK_EQUAL(*result.stop_height, newTip->nHeight);
// DeVault regtest subsidy is 500 coins/block (10x BCH's 50); 2 coinbases = 1000.
BOOST_CHECK_EQUAL(wallet.GetImmatureBalance(), 1000 * COIN);
}
// Prune the older block file.
PruneOneBlockFile(oldTip->GetBlockPos().nFile);
UnlinkPrunedFiles({oldTip->GetBlockPos().nFile});
// Verify ScanForWalletTransactions only picks transactions in the new block
// file.
{
CWallet wallet(Params(), *chain, WalletLocation(),
WalletDatabase::CreateDummy());
AddKey(wallet, coinbaseKey);
WalletRescanReserver reserver(&wallet);
reserver.reserve();
CWallet::ScanResult result = wallet.ScanForWalletTransactions(
oldTip->GetBlockHash(), BlockHash(), reserver, false /* update */);
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::FAILURE);
BOOST_CHECK_EQUAL(result.failed_block, oldTip->GetBlockHash());
BOOST_CHECK_EQUAL(result.stop_block, newTip->GetBlockHash());
BOOST_CHECK_EQUAL(*result.stop_height, newTip->nHeight);
BOOST_CHECK_EQUAL(wallet.GetImmatureBalance(), 500 * COIN);
}
// Prune the remaining block file.
PruneOneBlockFile(newTip->GetBlockPos().nFile);
UnlinkPrunedFiles({newTip->GetBlockPos().nFile});
// Verify ScanForWalletTransactions scans no blocks.
{
CWallet wallet(Params(), *chain, WalletLocation(),
WalletDatabase::CreateDummy());
AddKey(wallet, coinbaseKey);
WalletRescanReserver reserver(&wallet);
reserver.reserve();
CWallet::ScanResult result = wallet.ScanForWalletTransactions(
oldTip->GetBlockHash(), BlockHash(), reserver, false /* update */);
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::FAILURE);
BOOST_CHECK_EQUAL(result.failed_block, newTip->GetBlockHash());
BOOST_CHECK(result.stop_block.IsNull());
BOOST_CHECK(!result.stop_height);
BOOST_CHECK_EQUAL(wallet.GetImmatureBalance(), Amount::zero());
}
}
BOOST_FIXTURE_TEST_CASE(importmulti_rescan, TestChain100Setup) {
auto chain = interfaces::MakeChain();
// Cap last block file size, and mine new block in a new block file.
CBlockIndex *oldTip = ::ChainActive().Tip();
GetBlockFileInfo(oldTip->GetBlockPos().nFile)->nSize = MAX_BLOCKFILE_SIZE;
CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
CBlockIndex *newTip = ::ChainActive().Tip();
LockAnnotation lock(::cs_main);
auto locked_chain = chain->lock();
// Prune the older block file.
PruneOneBlockFile(oldTip->GetBlockPos().nFile);
UnlinkPrunedFiles({oldTip->GetBlockPos().nFile});
// Verify importmulti RPC returns failure for a key whose creation time is
// before the missing block, and success for a key whose creation time is
// after.
{
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(
Params(), *chain, WalletLocation(), WalletDatabase::CreateDummy());
AddWallet(wallet);
UniValue::Array keys;
UniValue::Object key;
key.emplace_back("scriptPubKey", HexStr(GetScriptForRawPubKey(coinbaseKey.GetPubKey())));
key.emplace_back("timestamp", 0);
key.emplace_back("internal", true);
keys.emplace_back(std::move(key));
BOOST_CHECK(key.empty());
CKey futureKey;
futureKey.MakeNewKey(true);
key.emplace_back("scriptPubKey", HexStr(GetScriptForRawPubKey(futureKey.GetPubKey())));
key.emplace_back("timestamp", newTip->GetBlockTimeMax() + TIMESTAMP_WINDOW + 1);
key.emplace_back("internal", true);
keys.emplace_back(std::move(key));
JSONRPCRequest request;
request.params.setArray();
request.params.get_array().emplace_back(std::move(keys));
UniValue response = importmulti(GetConfig(), request);
BOOST_CHECK_EQUAL(
UniValue::stringify(response),
strprintf("[{\"success\":false,\"error\":{\"code\":-1,\"message\":"
"\"Rescan failed for key with creation timestamp %d. "
"There was an error reading a block from time %d, which "
"is after or within %d seconds of key creation, and "
"could contain transactions pertaining to the key. As a "
"result, transactions and coins using this key may not "
"appear in the wallet. This error could be caused by "
"pruning or data corruption (see bitcoind log for "
"details) and could be dealt with by downloading and "
"rescanning the relevant blocks (see -reindex and "
"-rescan options).\"}},{\"success\":true}]",
0, oldTip->GetBlockTimeMax(), TIMESTAMP_WINDOW));
RemoveWallet(wallet);
}
}
// Verify importwallet RPC starts rescan at earliest block with timestamp
// greater or equal than key birthday. Previously there was a bug where
// importwallet RPC would start the scan at the latest block with timestamp less
// than or equal to key birthday.
BOOST_FIXTURE_TEST_CASE(importwallet_rescan, TestChain100Setup) {
auto chain = interfaces::MakeChain();
// Create two blocks with same timestamp to verify that importwallet rescan
// will pick up both blocks, not just the first.
const int64_t BLOCK_TIME = ::ChainActive().Tip()->GetBlockTimeMax() + 5;
SetMockTime(BLOCK_TIME);
m_coinbase_txns.emplace_back(
CreateAndProcessBlock({},
GetScriptForRawPubKey(coinbaseKey.GetPubKey()))
.vtx[0]);
m_coinbase_txns.emplace_back(
CreateAndProcessBlock({},
GetScriptForRawPubKey(coinbaseKey.GetPubKey()))
.vtx[0]);
// Set key birthday to block time increased by the timestamp window, so
// rescan will start at the block time.
const int64_t KEY_TIME = BLOCK_TIME + TIMESTAMP_WINDOW;
SetMockTime(KEY_TIME);
m_coinbase_txns.emplace_back(
CreateAndProcessBlock({},
GetScriptForRawPubKey(coinbaseKey.GetPubKey()))
.vtx[0]);
auto locked_chain = chain->lock();
std::string backup_file =
(SetDataDir("importwallet_rescan") / "wallet.backup").string();
// Import key into wallet and call dumpwallet to create backup file.
{
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(
Params(), *chain, WalletLocation(), WalletDatabase::CreateDummy());
LOCK(wallet->cs_wallet);
wallet->mapKeyMetadata[coinbaseKey.GetPubKey().GetID()].nCreateTime =
KEY_TIME;
wallet->AddKeyPubKey(coinbaseKey, coinbaseKey.GetPubKey());
JSONRPCRequest request;
request.params.setArray().emplace_back(backup_file);
AddWallet(wallet);
::dumpwallet(GetConfig(), request);
RemoveWallet(wallet);
}
// Call importwallet RPC and verify all blocks with timestamps >= BLOCK_TIME
// were scanned, and no prior blocks were scanned.
{
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(
Params(), *chain, WalletLocation(), WalletDatabase::CreateDummy());
JSONRPCRequest request;
request.params.setArray().emplace_back(backup_file);
AddWallet(wallet);
::importwallet(GetConfig(), request);
RemoveWallet(wallet);
LOCK(wallet->cs_wallet);
BOOST_CHECK_EQUAL(wallet->mapWallet.size(), 3U);
BOOST_CHECK_EQUAL(m_coinbase_txns.size(), 103U);
for (size_t i = 0; i < m_coinbase_txns.size(); ++i) {
bool found = wallet->GetWalletTx(m_coinbase_txns[i]->GetId());
bool expected = i >= 100;
BOOST_CHECK_EQUAL(found, expected);
}
}
SetMockTime(0);
}
// Verify that dumpwallet without a wallet loaded throws the correct RPC error.
BOOST_AUTO_TEST_CASE(no_wallet) {
try {
std::string backup_file = (SetDataDir("no_wallet") / "wallet.backup").string();
JSONRPCRequest request;
request.params.setArray().emplace_back(backup_file);
::dumpwallet(GetConfig(), request);
BOOST_CHECK(false); // should never be reached because we expect the above to always throw
} catch (const JSONRPCError &error) {
BOOST_CHECK_EQUAL(error.code, RPC_METHOD_NOT_FOUND);
BOOST_CHECK_EQUAL(error.message, "Method not found (wallet method is disabled because no wallet is loaded)");
}
}
// Check that GetImmatureCredit() returns a newly calculated value instead of
// the cached value after a MarkDirty() call.
//
// This is a regression test written to verify a bugfix for the immature credit
// function. Similar tests probably should be written for the other credit and
// debit functions.
BOOST_FIXTURE_TEST_CASE(coin_mark_dirty_immature_credit, TestChain100Setup) {
auto chain = interfaces::MakeChain();
CWallet wallet(Params(), *chain, WalletLocation(),
WalletDatabase::CreateDummy());
CWalletTx wtx(&wallet, m_coinbase_txns.back());
auto locked_chain = chain->lock();
LOCK(wallet.cs_wallet);
wtx.hashBlock = ::ChainActive().Tip()->GetBlockHash();
wtx.nIndex = 0;
// Call GetImmatureCredit() once before adding the key to the wallet to
// cache the current immature credit amount, which is 0.
BOOST_CHECK_EQUAL(wtx.GetImmatureCredit(*locked_chain), Amount::zero());
// Invalidate the cached value, add the key, and make sure a new immature
// credit amount is calculated.
wtx.MarkDirty();
wallet.AddKeyPubKey(coinbaseKey, coinbaseKey.GetPubKey());
BOOST_CHECK_EQUAL(wtx.GetImmatureCredit(*locked_chain), 500 * COIN);
}
static int64_t AddTx(CWallet &wallet, uint32_t lockTime, int64_t mockTime,
int64_t blockTime) {
CMutableTransaction tx;
tx.nLockTime = lockTime;
SetMockTime(mockTime);
CBlockIndex *block = nullptr;
if (blockTime > 0) {
LockAnnotation lock(::cs_main);
auto locked_chain = wallet.chain().lock();
auto inserted =
mapBlockIndex.try_emplace(BlockHash(GetRandHash()));
assert(inserted.second);
const BlockHash &hash = inserted.first->first;
block = &inserted.first->second;
block->nTime = blockTime;
block->phashBlock = &hash;
}
CWalletTx wtx(&wallet, MakeTransactionRef(tx));
if (block) {
wtx.SetMerkleBranch(block->GetBlockHash(), 0);
}
{
LOCK(cs_main);
wallet.AddToWallet(wtx);
}
LOCK(wallet.cs_wallet);
return wallet.mapWallet.at(wtx.GetId()).nTimeSmart;
}
// Simple test to verify assignment of CWalletTx::nSmartTime value. Could be
// expanded to cover more corner cases of smart time logic.
BOOST_AUTO_TEST_CASE(ComputeTimeSmart) {
// New transaction should use clock time if lower than block time.
BOOST_CHECK_EQUAL(AddTx(m_wallet, 1, 100, 120), 100);
// Test that updating existing transaction does not change smart time.
BOOST_CHECK_EQUAL(AddTx(m_wallet, 1, 200, 220), 100);
// New transaction should use clock time if there's no block time.
BOOST_CHECK_EQUAL(AddTx(m_wallet, 2, 300, 0), 300);
// New transaction should use block time if lower than clock time.
BOOST_CHECK_EQUAL(AddTx(m_wallet, 3, 420, 400), 400);
// New transaction should use latest entry time if higher than
// min(block time, clock time).
BOOST_CHECK_EQUAL(AddTx(m_wallet, 4, 500, 390), 400);
// If there are future entries, new transaction should use time of the
// newest entry that is no more than 300 seconds ahead of the clock time.
BOOST_CHECK_EQUAL(AddTx(m_wallet, 5, 50, 600), 300);
// Reset mock time for other tests.
SetMockTime(0);
}
BOOST_AUTO_TEST_CASE(LoadReceiveRequests) {
CTxDestination dest = CKeyID();
LOCK(m_wallet.cs_wallet);
m_wallet.AddDestData(dest, "misc", "val_misc");
m_wallet.AddDestData(dest, "rr0", "val_rr0");
m_wallet.AddDestData(dest, "rr1", "val_rr1");
auto values = m_wallet.GetDestValues("rr");
BOOST_CHECK_EQUAL(values.size(), 2U);
BOOST_CHECK_EQUAL(values[0], "val_rr0");
BOOST_CHECK_EQUAL(values[1], "val_rr1");
}
class ListCoinsTestingSetup : public TestChain100Setup {
public:
ListCoinsTestingSetup() {
CreateAndProcessBlock({},
GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
wallet = std::make_unique<CWallet>(Params(), *m_chain, WalletLocation(),
WalletDatabase::CreateMock());
bool firstRun;
wallet->LoadWallet(firstRun);
AddKey(*wallet, coinbaseKey);
WalletRescanReserver reserver(wallet.get());
reserver.reserve();
CWallet::ScanResult result = wallet->ScanForWalletTransactions(
::ChainActive().Genesis()->GetBlockHash(), BlockHash(), reserver,
false /* update */);
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::SUCCESS);
BOOST_CHECK_EQUAL(result.stop_block,
::ChainActive().Tip()->GetBlockHash());
BOOST_CHECK_EQUAL(*result.stop_height, ::ChainActive().Height());
BOOST_CHECK(result.failed_block.IsNull());
}
~ListCoinsTestingSetup() { wallet.reset(); }
CWalletTx &AddTx(CRecipient recipient, CoinSelectionHint coinsel = CoinSelectionHint::Default,
int *changePosInOut = nullptr, const CCoinControl & coinControl = {}) {
return AddTx(std::vector<CRecipient>{{recipient}}, coinsel, changePosInOut, coinControl);
}
CWalletTx &AddTx(const std::vector<CRecipient> &recipients,
CoinSelectionHint coinsel = CoinSelectionHint::Default,
int *changePosInOut = nullptr, const CCoinControl &coinControl = {}) {
CTransactionRef tx;
CReserveKey reservekey(wallet.get());
Amount fee;
int tmp_changePos = -1;
int &changePos = changePosInOut ? *changePosInOut : tmp_changePos;
std::string error;
BOOST_CHECK_EQUAL(CreateTransactionResult::CT_OK,
wallet->CreateTransaction(
*m_locked_chain, recipients, tx, reservekey, fee,
changePos, error, coinControl, true, coinsel));
// The anti-fee-sniping feature should set the lock time equal to the block height.
BOOST_CHECK_EQUAL(::ChainActive().Height(), tx->nLockTime);
CValidationState state;
BOOST_CHECK(
wallet->CommitTransaction(tx, {}, {}, reservekey, nullptr, state));
CMutableTransaction blocktx;
{
LOCK(wallet->cs_wallet);
blocktx =
CMutableTransaction(*wallet->mapWallet.at(tx->GetId()).tx);
}
const auto block = CreateAndProcessBlock({CMutableTransaction(blocktx)},
GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
{
LOCK(cs_main);
BOOST_CHECK(::ChainActive().Tip()->GetBlockHash() == block.GetHash());
}
LOCK(wallet->cs_wallet);
auto it = wallet->mapWallet.find(tx->GetId());
BOOST_CHECK(it != wallet->mapWallet.end());
it->second.SetMerkleBranch(::ChainActive().Tip()->GetBlockHash(), 1);
return it->second;
}
std::unique_ptr<interfaces::Chain> m_chain = interfaces::MakeChain();
// Temporary. Removed in upcoming lock cleanup
std::unique_ptr<interfaces::Chain::Lock> m_locked_chain =
m_chain->assumeLocked();
std::unique_ptr<CWallet> wallet;
};
BOOST_FIXTURE_TEST_CASE(ListCoins, ListCoinsTestingSetup) {
std::string coinbaseAddress = coinbaseKey.GetPubKey().GetID().ToString();
// Confirm ListCoins initially returns 1 coin grouped under coinbaseKey
// address.
std::map<CTxDestination, std::vector<COutput>> list;
{
LOCK2(cs_main, wallet->cs_wallet);
list = wallet->ListCoins(*m_locked_chain);
}
BOOST_CHECK_EQUAL(list.size(), 1U);
BOOST_CHECK_EQUAL(std::get<CKeyID>(list.begin()->first).ToString(),
coinbaseAddress);
BOOST_CHECK_EQUAL(list.begin()->second.size(), 1U);
// Check initial balance from one mature coinbase transaction (DeVault regtest subsidy = 500).
BOOST_CHECK_EQUAL(500 * COIN, wallet->GetAvailableBalance());
// Check that wallet->GetBalance returns the same thing
BOOST_CHECK_EQUAL(500 * COIN, wallet->GetBalance());
// Add a transaction creating a change address, and confirm ListCoins still
// returns the coin associated with the change address underneath the
// coinbaseKey pubkey, even though the change address has a different
// pubkey.
AddTx(CRecipient{GetScriptForRawPubKey({}), 1 * COIN, {},
false /* subtract fee */});
{
LOCK2(cs_main, wallet->cs_wallet);
list = wallet->ListCoins(*m_locked_chain);
}
BOOST_CHECK_EQUAL(list.size(), 1U);
BOOST_CHECK_EQUAL(std::get<CKeyID>(list.begin()->first).ToString(),
coinbaseAddress);
BOOST_CHECK_EQUAL(list.begin()->second.size(), 2U);
// Lock both coins. Confirm number of available coins drops to 0.
{
LOCK2(cs_main, wallet->cs_wallet);
std::vector<COutput> available;
wallet->AvailableCoins(*m_locked_chain, available);
BOOST_CHECK_EQUAL(available.size(), 2U);
}
for (const auto &group : list) {
for (const auto &coin : group.second) {
LOCK(wallet->cs_wallet);
wallet->LockCoin(COutPoint(coin.tx->GetId(), coin.i));
}
}
{
LOCK2(cs_main, wallet->cs_wallet);
std::vector<COutput> available;
wallet->AvailableCoins(*m_locked_chain, available);
BOOST_CHECK_EQUAL(available.size(), 0U);
}
// Confirm ListCoins still returns same result as before, despite coins
// being locked.
{
LOCK2(cs_main, wallet->cs_wallet);
list = wallet->ListCoins(*m_locked_chain);
}
BOOST_CHECK_EQUAL(list.size(), 1U);
BOOST_CHECK_EQUAL(std::get<CKeyID>(list.begin()->first).ToString(),
coinbaseAddress);
BOOST_CHECK_EQUAL(list.begin()->second.size(), 2U);
}
BOOST_FIXTURE_TEST_CASE(FastTransaction, ListCoinsTestingSetup) {
std::string coinbaseAddress = coinbaseKey.GetPubKey().GetID().ToString();
for (uint8_t i=0; i<2; i++) {
CoinSelectionHint coinsel(static_cast<CoinSelectionHint>(i));
// DeVault regtest subsidy is 500 coins/block (10x BCH's 50); amounts scaled 10x so the
// balance returns to the starting value after the four spends (loop invariant).
BOOST_CHECK(wallet->GetBalance() == 500 * COIN);
// Each AddTx call will spend some coins then mine a block, adding another 500 coins
AddTx(CRecipient{GetScriptForRawPubKey({}), 10 * COIN, {}, true /* subtract fee */}, coinsel);
BOOST_CHECK(wallet->GetBalance() == 990 * COIN);
AddTx(CRecipient{GetScriptForRawPubKey({}), 10 * COIN, {}, true /* subtract fee */}, coinsel);
BOOST_CHECK(wallet->GetBalance() == 1480 * COIN);
AddTx(CRecipient{GetScriptForRawPubKey({}), 510 * COIN, {}, true /* subtract fee */}, coinsel);
BOOST_CHECK(wallet->GetBalance() == 1470 * COIN);
AddTx(CRecipient{GetScriptForRawPubKey({}), 1470 * COIN, {}, true /* subtract fee */}, coinsel);
BOOST_CHECK(wallet->GetBalance() == 500 * COIN);
}
}
BOOST_FIXTURE_TEST_CASE(wallet_error_on_invalid_coinselection_hint, ListCoinsTestingSetup) {
CTransactionRef tx;
CReserveKey reservekey(wallet.get());
Amount fee;
int changePos = -1;
std::string error;
CCoinControl dummy;
CRecipient recipient{GetScriptForRawPubKey({}), 1 * COIN, {}, true};
BOOST_CHECK_EQUAL(CreateTransactionResult::CT_INVALID_PARAMETER,
wallet->CreateTransaction(
*m_locked_chain, {recipient}, tx, reservekey, fee,
changePos, error, dummy, true,
CoinSelectionHint::Invalid));
}
BOOST_FIXTURE_TEST_CASE(wallet_disableprivkeys, TestChain100Setup) {
auto chain = interfaces::MakeChain();
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(
Params(), *chain, WalletLocation(), WalletDatabase::CreateDummy());
wallet->SetMinVersion(FEATURE_LATEST);
wallet->SetWalletFlag(WALLET_FLAG_DISABLE_PRIVATE_KEYS);
BOOST_CHECK(!wallet->TopUpKeyPool(1000));
CPubKey pubkey;
BOOST_CHECK(!wallet->GetKeyFromPool(pubkey, false));
}
// DeVault [2H]: a native BIP39 HD wallet (CHDChain mnemonic + DeriveNewChildKey) must derive the
// SAME keys as the verified 2C importmnemonic path. Compute the expected first external key with the
// explicit CExtKey sequence (network-agnostic, using this network's ExtCoinType) and assert the
// wallet's first getnewaddress matches it. On mainnet this index-0 key is the gold vector
// devault:qpp5gk78lhw8vh8twsp743kxwd5es3un5sklddsgjq (2C / the Delight light wallet).
BOOST_FIXTURE_TEST_CASE(devault_bip39_hd_native, TestChain100Setup) {
const std::string phrase = "fee fee fee fee fee fee fee fee fee fee fee fee";
// Expected: m/44'/<coin>'/0'/0/0 via the exact 2C derivation.
const auto [ok, words, seed] = mnemonic::CheckSeedPhrase(phrase);
BOOST_CHECK(ok);
const uint32_t HARD = 0x80000000;
const uint32_t coinType = uint32_t(Params().ExtCoinType());
CExtKey m, purpose, coin, acct, ext, child;
m.SetSeed(seed.data(), seed.size());
BOOST_CHECK(m.Derive(purpose, 44 | HARD));
BOOST_CHECK(purpose.Derive(coin, coinType | HARD));
BOOST_CHECK(coin.Derive(acct, 0 | HARD));
BOOST_CHECK(acct.Derive(ext, 0)); // external chain, NON-hardened
BOOST_CHECK(ext.Derive(child, 0)); // index 0, NON-hardened
const CKeyID expected = child.key.GetPubKey().GetID();
// Actual: the wallet derives natively via DeriveNewChildKey (mnemonic branch).
auto chain = interfaces::MakeChain();
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(
Params(), *chain, WalletLocation(), WalletDatabase::CreateMock());
bool firstRun;
wallet->LoadWallet(firstRun);
wallet->SetMinVersion(FEATURE_LATEST);
BOOST_CHECK(wallet->SetHDSeedFromMnemonic(phrase));
BOOST_CHECK(wallet->TopUpKeyPool());
CPubKey pubkey;
BOOST_CHECK(wallet->GetKeyFromPool(pubkey, false)); // first EXTERNAL key
BOOST_CHECK_EQUAL(pubkey.GetID().ToString(), expected.ToString());
}
// Explicit calculation which is used to test the wallet constant
static size_t CalculateP2PKHInputSize(bool use_max_sig) {
// Generate ephemeral valid pubkey
CKey key;
key.MakeNewKey(true);
CPubKey pubkey = key.GetPubKey();
// Generate pubkey hash
CKeyID key_hash = pubkey.GetID();
// Create script to enter into keystore. Key hash can't be 0...
CScript script = GetScriptForDestination(key_hash);
// Add script to key store and key to watchonly
CBasicKeyStore keystore;
keystore.AddKeyPubKey(key, pubkey);
// Fill in dummy signatures for fee calculation.
SignatureData sig_data;
if (!ProduceSignature(keystore,
use_max_sig ? DUMMY_MAXIMUM_SIGNATURE_CREATOR
: DUMMY_SIGNATURE_CREATOR,
script, sig_data, 0 /* scriptFlags: unused by dummy class, 0 ok here */)) {
// We're hand-feeding it correct arguments; shouldn't happen
assert(false);
}
CTxIn tx_in;
UpdateInput(tx_in, sig_data);
return static_cast<size_t>(GetVirtualTransactionInputSize(tx_in, 1, nBytesPerSigCheck));
}
BOOST_FIXTURE_TEST_CASE(dummy_input_size_test, TestChain100Setup) {
BOOST_CHECK(CalculateP2PKHInputSize(false) <= DUMMY_P2PKH_INPUT_SIZE);
BOOST_CHECK_EQUAL(CalculateP2PKHInputSize(true), DUMMY_P2PKH_INPUT_SIZE);
}
struct TokensNotActivatedTestingSetup : ListCoinsTestingSetup {
std::optional<int32_t> origDU1Override, origFTForkOverride;
TokensNotActivatedTestingSetup() : ListCoinsTestingSetup() {
origDU1Override = g_DU1HeightOverride;
origFTForkOverride = g_FTForkHeightOverride;
g_DU1HeightOverride = std::numeric_limits<int32_t>::max();
g_FTForkHeightOverride = std::numeric_limits<int32_t>::max();
LOCK(cs_main);
// Ensure DU1 (tokens) is not active for next block and mempool
BOOST_CHECK(!IsDU1Enabled(::GetConfig().GetChainParams().GetConsensus(), ::ChainActive().Tip()));
}
~TokensNotActivatedTestingSetup() {
g_DU1HeightOverride = origDU1Override;
g_FTForkHeightOverride = origFTForkOverride;
}
};
// Re-enabled in Phase 4A (DU1 wires up DeVault's token activation). This test injects CashToken
// data into txns to test BIP69 sorting with token data present.
BOOST_FIXTURE_TEST_CASE(wallet_bip69, TokensNotActivatedTestingSetup) {
// Note: The entire point of this test is to *just* test tx sorting with/without bip69 enabled when token data is
// present/absent, and as such we didn't bother creating consensus-respecting CashToken txns for this test (which
// is why this test requires upgrade9 be disabled).
Defer d([]{
// undo forceSetArg
gArgs.ClearArg("-usebip69");
});
constexpr size_t N_KEYS = 4;
std::array<CKey, N_KEYS> privKeys;
std::array<CPubKey, N_KEYS> pubKeys;
std::array<CScript, N_KEYS> scriptPubKeys;
// generate random keys
for (size_t i = 0; i < N_KEYS; ++i) {
auto &pub = pubKeys[i];
auto &priv = privKeys[i];
auto &spk = scriptPubKeys[i];
priv.MakeNewKey(false);
pub = priv.GetPubKey();
spk = GetScriptForDestination(pub.GetID()); // P2PKH
BOOST_CHECK(pub.IsFullyValid());
CTxDestination dest;
BOOST_CHECK(ExtractDestination(spk, dest, 0 /* no p2sh_32 */));
BOOST_CHECK(dest == CTxDestination(pub.GetID()));
}
// Ensure we have a bunch of small coins
// DeVault scale: upstream used 1000*CASH (0.001 DVT) coins with 10-sat bumps — below DeVault's
// ~0.6 DVT dust floor and off the 0.001-DVT spock grid. Use 1-DVT coins bumped by one spock.
{
const auto myScriptPubKey = GetScriptForRawPubKey(coinbaseKey.GetPubKey());
std::vector<CRecipient> toMe(100, CRecipient{myScriptPubKey, COIN, {}, false});
for (int i = 0; i < 3; ++i) {
for (auto &r: toMe) r.nAmount += COIN / 1000; // one spock -- subsequent iterations have slightly larger coins
AddTx(toMe);
}
}
BOOST_CHECK(wallet->GetBalance() > 50 * COIN);
{
// count the number of coins we have
LOCK2(cs_main, wallet->cs_wallet);
size_t nCoins = 0;
for (const auto &[dest, vouts] : wallet->ListCoins(*m_locked_chain)) {
nCoins += vouts.size();
}
// we should have a bunch of coins to really exercise this test
BOOST_CHECK(nCoins >= 100);
}
token::OutputData tok1(token::Id{uint256S("00112233445577001122334455770011223344557700112233445577")},
token::SafeAmount::fromIntUnchecked(1234),
token::NFTCommitment{5u, uint8_t{3}}, true, true, true),
tok2(token::Id{uint256S("00112233445577001122334455770011223344557700112233445578")},
token::SafeAmount::fromIntUnchecked(1235),
token::NFTCommitment{5u, uint8_t{3}}, true, false, false);
// DeVault scale (upstream used N * CASH): N * COIN / 25 keeps every output above the ~0.6 DVT
// dust floor, on the 0.001-DVT spock grid, and makes the send total (~838 DVT) exceed the
// largest possible single wallet coin (a 500-DVT coinbase) — guaranteeing the multi-input
// selections the input-sorting checks below require.
std::vector<CRecipient> recipients{{
{scriptPubKeys[1], 3040 * COIN / 25, {}, false /* subtract fee */},
{scriptPubKeys[2], 3040 * COIN / 25, {}, false /* subtract fee */},
{scriptPubKeys[3], 8001 * COIN / 25, {}, false /* subtract fee */},
{scriptPubKeys[2], 1234 * COIN / 25, {}, false /* subtract fee */},
{scriptPubKeys[1], 1234 * COIN / 25, {}, false /* subtract fee */},
{scriptPubKeys[3], 1234 * COIN / 25, {}, false /* subtract fee */},
{scriptPubKeys[3], 1234 * COIN / 25, token::OutputDataPtr{tok1}, false /* subtract fee */},
{scriptPubKeys[3], 1234 * COIN / 25, token::OutputDataPtr{tok2}, false /* subtract fee */},
{scriptPubKeys[0], 234 * COIN / 25, {}, false /* subtract fee */},
// These funny scriptPubKeys here are to ensure we catch bad sorts that use the incorrect prevector::operator<
// instead of the correct lexicographical ordering.
{CScript() << opcodetype(FIRST_UNDEFINED_OP_VALUE-1),
234 * COIN / 25, {}, false /* subtract fee */},
{CScript() << opcodetype(FIRST_UNDEFINED_OP_VALUE-2) << opcodetype(FIRST_UNDEFINED_OP_VALUE-2),
234 * COIN / 25, {}, false /* subtract fee */},
}};
const auto IsTxSorted = [](const CTransactionRef &tx) {
// check outputs are sorted ascending according to: nValue, scriptPubKey, tokenDataPtr
for (size_t i = 1; i < tx->vout.size(); ++i) {
auto &a = tx->vout[i-1], &b = tx->vout[i];
if (a.nValue > b.nValue) {
return false;
} else if (a.nValue == b.nValue) {
if (a.scriptPubKey == b.scriptPubKey) {
if (!((a.tokenDataPtr < b.tokenDataPtr) || a.tokenDataPtr == b.tokenDataPtr)) {
return false;
}
} else if (!std::lexicographical_compare(a.scriptPubKey.begin(), a.scriptPubKey.end(),
b.scriptPubKey.begin(), b.scriptPubKey.end())) {
return false;
}
}
BOOST_TEST_MESSAGE(strprintf("%s < %s", a.ToString(), b.ToString()));
}
// check inputs are sorted ascending accorting to COutpoint::operator<
for (size_t i = 1; i < tx->vin.size(); ++i) {
auto &a = tx->vin[i-1].prevout, &b = tx->vin[i].prevout;
if (!(a < b || a == b)) {
return false;
}
}
return true;
};
const auto AllRecipientsPresent = [](const std::vector<CRecipient> &rs, const CTransactionRef &tx) {
struct RecipientSort {
bool operator()(const CRecipient &a, const CRecipient &b) const noexcept {
if (a.nAmount == b.nAmount) {
if (a.scriptPubKey == b.scriptPubKey) {
return a.tokenDataPtr < b.tokenDataPtr;
}
return a.scriptPubKey < b.scriptPubKey;
}
return a.nAmount < b.nAmount;
}
};
std::set<CRecipient, RecipientSort> needed{rs.begin(), rs.end()}, seen;
const size_t nNeeded = needed.size();
BOOST_CHECK_EQUAL(nNeeded, rs.size());
for (const auto &out : tx->vout) {
const CRecipient r{out.scriptPubKey, out.nValue, out.tokenDataPtr, false};
if (needed.count(r) && !seen.count(r)) {
needed.erase(r);
seen.insert(r);
}
}
return needed.empty() && seen.size() == nNeeded;
};
const auto HasChangeAndOnlyChangeIsMine = [this](int changePos, const CTransactionRef &tx) {
if (changePos < 0 || size_t(changePos) >= tx->vout.size())
return false;
for (size_t i = 0; i < tx->vout.size(); ++i) {
const auto ismine = wallet->IsMine(tx->vout[i]);
if (i == size_t(changePos)) {
// change pos
if ((ismine & ISMINE_SPENDABLE) != ISMINE_SPENDABLE) {
return false;
}
} else {
// other
if (ismine != ISMINE_NO) {
return false;
}
}
}
return true;
};
// DeVault determinism: with the ~0.6 DVT dust floor, free-form coin selection can land close
// enough to the send total that the would-be change is folded into the fee, making the
// "change exists" postconditions below flaky. Preselect the wallet's largest coins (>= 2, and
// enough to exceed the ~839 DVT send total by >60 DVT) so every sub-case is structurally
// guaranteed BOTH >1 input AND a change output well above dust. The BIP69 sorting behavior
// under test is unaffected by how the inputs were chosen.
const auto SelectBigCoins = [&]() {
CCoinControl ctl;
LOCK2(cs_main, wallet->cs_wallet);
std::vector<COutput> avail;
wallet->AvailableCoins(*m_locked_chain, avail);
std::sort(avail.begin(), avail.end(), [](const COutput &a, const COutput &b) {
return a.GetInputCoin().txout.nValue > b.GetInputCoin().txout.nValue;
});
Amount sum = Amount::zero();
size_t used = 0;
for (const auto &out : avail) {
ctl.Select(out.GetInputCoin().outpoint);
sum += out.GetInputCoin().txout.nValue;
if (++used >= 2 && sum > 900 * COIN) break;
}
BOOST_REQUIRE(used >= 2 && sum > 900 * COIN);
ctl.fAllowOtherInputs = false;
return ctl;
};
{
// 1. Create tx with BIP69 enabled.
// Postconditions to be met: tx is sorted and change pos is correct.
gArgs.ForceSetArg("-usebip69", "1");
CTransactionRef tx;
int changePos = -1;
tx = AddTx(recipients, CoinSelectionHint::Default, &changePos, SelectBigCoins()).tx;
BOOST_CHECK(tx->vin.size() > 1); // ensure we had a bunch of inputs in the txn
BOOST_CHECK(IsTxSorted(tx));
BOOST_CHECK(changePos != -1); // there should definitely be change
BOOST_CHECK(AllRecipientsPresent(recipients, tx)); // all recipients should have gotten the exact amounts
BOOST_CHECK(HasChangeAndOnlyChangeIsMine(changePos, tx));
}
{
// 2. Create tx with BIP69 enabled, but with a hard-coded change pos.
// Postconditions: tx is NOT sorted and change pos is what we requested
// (BIP69 is not applied when caller requests a specific change pos).
gArgs.ForceSetArg("-usebip69", "1");
CTransactionRef tx;
int changePos = 2; // request change position 2
tx = AddTx(recipients, CoinSelectionHint::Default, &changePos, SelectBigCoins()).tx;
BOOST_CHECK(tx->vin.size() > 1); // ensure we had a bunch of inputs in the txn
BOOST_CHECK( ! IsTxSorted(tx));
BOOST_CHECK(changePos == 2); // there should definitely be change, where we said it should be.
BOOST_CHECK(AllRecipientsPresent(recipients, tx)); // all recipients should have gotten the exact amounts
BOOST_CHECK(HasChangeAndOnlyChangeIsMine(changePos, tx));
}
{
// 3. Create tx with BIP69 disabled.
// Postconditions: tx is NOT sorted.
gArgs.ForceSetArg("-usebip69", "0");
CTransactionRef tx;
int changePos = -1; // no specific change position requested
tx = AddTx(recipients, CoinSelectionHint::Default, &changePos, SelectBigCoins()).tx;
BOOST_CHECK(tx->vin.size() > 1); // ensure we had a bunch of inputs in the txn
BOOST_CHECK( ! IsTxSorted(tx));
BOOST_CHECK(changePos != -1); // there should definitely be change
BOOST_CHECK(AllRecipientsPresent(recipients, tx)); // all recipients should have gotten the exact amounts
BOOST_CHECK(HasChangeAndOnlyChangeIsMine(changePos, tx));
}
{
// 4. Create a tx with BIP69 enabled but don't sign it.
// Postcondition: BIP69 should NOT be enabled when not signing.
gArgs.ForceSetArg("-usebip69", "1");
CTransactionRef tx;
CReserveKey reservekey(wallet.get());
Amount fee;
int changePos = -1;
std::string error;
const CCoinControl bigCoins = SelectBigCoins();
const auto res = wallet->CreateTransaction(*m_locked_chain, recipients, tx, reservekey, fee,
changePos, error, bigCoins, false /* don't sign */);
BOOST_CHECK_EQUAL(res, CreateTransactionResult::CT_OK);
BOOST_CHECK(tx->vin.size() > 1); // ensure we had a bunch of inputs in the txn
BOOST_CHECK( ! IsTxSorted(tx));
BOOST_CHECK(changePos != -1); // there should definitely be change
BOOST_CHECK(AllRecipientsPresent(recipients, tx)); // all recipients should have gotten the exact amounts
BOOST_CHECK(HasChangeAndOnlyChangeIsMine(changePos, tx));
}
}
struct TokensActivatedTestingSetup : ListCoinsTestingSetup {
std::optional<int32_t> origDU1Override, origFTForkOverride;
TokensActivatedTestingSetup() : ListCoinsTestingSetup() {
origDU1Override = g_DU1HeightOverride;
origFTForkOverride = g_FTForkHeightOverride;
g_DU1HeightOverride = 0;
// These inherited tests exercise fungible amounts too; lift the DeVault FT-deferral gate
// (they validate the inherited CashTokens layer — the base for post-FT-activation rules).
g_FTForkHeightOverride = 0;
LOCK(cs_main);
// Ensure DU1 (tokens) is active for next block and mempool
BOOST_CHECK(IsDU1Enabled(::GetConfig().GetChainParams().GetConsensus(), ::ChainActive().Tip()));
}
~TokensActivatedTestingSetup() {
g_DU1HeightOverride = origDU1Override;
g_FTForkHeightOverride = origFTForkOverride;
}
};
/// Test basic support in wallet for processing tokens (requires active token rules to work correctly)
// Re-enabled in Phase 4A (DU1 wires up DeVault's token activation).
BOOST_FIXTURE_TEST_CASE(wallet_tokens, TokensActivatedTestingSetup) {
CCoinControl allIncludingTokens;
allIncludingTokens.m_allow_tokens = true;
auto GetTokenGenesisCoins = [&]{
std::vector<COutput> tokenGenesisCandidateCoins;
LOCK2(cs_main, wallet->cs_wallet);
const uint32_t scriptFlags = ::GetMemPoolScriptFlags(::GetConfig().GetChainParams().GetConsensus(),
::ChainActive().Tip());
std::vector<COutput> vCoins;
wallet->AvailableCoins(*m_locked_chain, vCoins, true, &allIncludingTokens);
for (const auto &out : vCoins) {
if (out.i == 0) {
const auto txout = out.GetInputCoin().txout;
CTxDestination dest;
ExtractDestination(txout.scriptPubKey, dest, scriptFlags);
BOOST_TEST_MESSAGE(strprintf("Found potential genesis coin in wallet: %s paying to: %s, CTxOut: %s",
out.GetInputCoin().outpoint.ToString(),
EncodeDestination(dest, ::GetConfig()),
txout.ToString()));
tokenGenesisCandidateCoins.push_back(out);
}
}
return tokenGenesisCandidateCoins;
};
auto GetTokenCoins = [&]{
std::vector<COutput> ret;
CCoinControl tokensOnly;
tokensOnly.m_allow_tokens = true;
tokensOnly.m_tokens_only = true;
LOCK2(cs_main, wallet->cs_wallet);
const uint32_t scriptFlags = ::GetMemPoolScriptFlags(::GetConfig().GetChainParams().GetConsensus(),
::ChainActive().Tip());
std::vector<COutput> vCoins;
wallet->AvailableCoins(*m_locked_chain, vCoins, true, &tokensOnly);
for (const auto &out : vCoins) {
const auto txout = out.GetInputCoin().txout;
if (txout.tokenDataPtr) {
CTxDestination dest;
ExtractDestination(txout.scriptPubKey, dest, scriptFlags);
BOOST_TEST_MESSAGE(strprintf("Found token-containing coin in wallet: %s paying to: %s, CTxOut: %s",
out.GetInputCoin().outpoint.ToString(),
EncodeDestination(dest, ::GetConfig()),
txout.ToString()));
ret.push_back(out);
}
}
return ret;
};
auto GenesisTokenToWallet = [&]{
auto tokenGenesisCandidateCoins = GetTokenGenesisCoins();
BOOST_CHECK( ! tokenGenesisCandidateCoins.empty());