From e498378eb79332f576931c1ad06d3f42f3dc5c54 Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Tue, 22 Oct 2024 20:16:22 +0700 Subject: [PATCH] feat: add test for fee in getmempoolentry --- test/functional/feature_asset_locks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/feature_asset_locks.py b/test/functional/feature_asset_locks.py index 45a1608958..ff6ac61289 100755 --- a/test/functional/feature_asset_locks.py +++ b/test/functional/feature_asset_locks.py @@ -370,6 +370,7 @@ class AssetLocksTest(DashTestFramework): self.wait_for_sporks_same() txid = self.send_tx(asset_unlock_tx) + assert_equal(node.getmempoolentry(txid)['fee'], Decimal("0.0007")) is_id = node_wallet.sendtoaddress(node_wallet.getnewaddress(), 1) for node in self.nodes: self.wait_for_instantlock(is_id, node)