Skip to content

Commit d494339

Browse files
Merge #6340: fix: make 6336 compile in v21.1.x branch, using older CHECK_NONFATAL functionality
a7bbcc8 fix: make 6336 compile in v21.1.x branch, using older CHECK_NONFATAL functionality (pasta) Pull request description: ## Issue being fixed or feature implemented Resolve build failures when 6336 is back ported ## What was done? Use older functionality of CHECK_NONFATAL ## How Has This Been Tested? built on both branches ## Breaking Changes ## Checklist: _Go over all the following points, and put an `x` in all the boxes that apply._ - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: knst: utACK a7bbcc8 UdjinM6: utACK a7bbcc8 (#6339 compiles with this one applied on top of it) kwvg: utACK a7bbcc8 Tree-SHA512: 17b6d8223f653eaafa6ef9d1a4e8fc14ca1fe1623fbb13d23a9429e87a64c8fae3ddaf6d2d8d5a52138ab712a36949662b38a8a9cbbc5db3618ce24f565f6f2a
2 parents cd6598f + a7bbcc8 commit d494339

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

src/core_write.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,9 @@ void TxToUniv(const CTransaction& tx, const uint256& hashBlock, bool include_add
336336
if (calculate_fee) {
337337
CAmount fee = amt_total_in - amt_total_out;
338338
if (tx.IsPlatformTransfer()) {
339-
fee = CHECK_NONFATAL(GetTxPayload<CAssetUnlockPayload>(tx))->getFee();
339+
auto payload = GetTxPayload<CAssetUnlockPayload>(tx);
340+
CHECK_NONFATAL(payload);
341+
fee = payload->getFee();
340342
}
341343
CHECK_NONFATAL(MoneyRange(fee));
342344
entry.pushKV("fee", ValueFromAmount(fee));

src/rpc/blockchain.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2453,7 +2453,9 @@ static RPCHelpMan getblockstats()
24532453
CAmount txfee = tx_total_in - tx_total_out;
24542454

24552455
if (tx->IsPlatformTransfer()) {
2456-
txfee = CHECK_NONFATAL(GetTxPayload<CAssetUnlockPayload>(*tx))->getFee();
2456+
auto payload = GetTxPayload<CAssetUnlockPayload>(*tx);
2457+
CHECK_NONFATAL(payload);
2458+
txfee = payload->getFee();
24572459
}
24582460

24592461
CHECK_NONFATAL(MoneyRange(txfee));

src/rpc/masternode.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,9 @@ static RPCHelpMan masternode_payments()
408408
continue;
409409
}
410410
if (tx->IsPlatformTransfer()) {
411-
nBlockFees += CHECK_NONFATAL(GetTxPayload<CAssetUnlockPayload>(*tx))->getFee();
411+
auto payload = GetTxPayload<CAssetUnlockPayload>(*tx);
412+
CHECK_NONFATAL(payload);
413+
nBlockFees += payload->getFee();
412414
continue;
413415
}
414416

0 commit comments

Comments
 (0)