-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: discounted fees for confidential transactions
This is a mempool policy only change to enable cheaper fees for Confidential Transactions. At a feerate of 1 sat/vb for a 2 input, 3 output transaction: - explicit tx fee 326 sats - confidential tx fee 437 sats
- Loading branch information
Showing
14 changed files
with
218 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
#!/usr/bin/env python3 | ||
# Copyright (c) 2016 The Bitcoin Core developers | ||
# Distributed under the MIT/X11 software license, see the accompanying | ||
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
from decimal import Decimal | ||
from test_framework.test_framework import BitcoinTestFramework | ||
from test_framework.util import ( | ||
assert_equal, | ||
) | ||
|
||
class CTTest(BitcoinTestFramework): | ||
def set_test_params(self): | ||
self.num_nodes = 3 | ||
self.setup_clean_chain = True | ||
args = [ | ||
"-anyonecanspendaremine=1", | ||
"-con_blocksubsidy=0", | ||
"-con_connect_genesis_outputs=1", | ||
"-initialfreecoins=2100000000000000", | ||
"-txindex=1", | ||
] | ||
self.extra_args = [ | ||
# node 0 does not accept nor create discounted CTs | ||
args + ["-acceptdiscountct=0", "-creatediscountct=0"], | ||
# node 1 accepts but does not create discounted CTs | ||
args + ["-acceptdiscountct=1", "-creatediscountct=0"], | ||
# node 2 both accepts and creates discounted CTs | ||
args + ["-acceptdiscountct=1", "-creatediscountct=1"], | ||
] | ||
|
||
def skip_test_if_missing_module(self): | ||
self.skip_if_no_wallet() | ||
|
||
def run_test(self): | ||
feerate = 1.0 | ||
|
||
node0 = self.nodes[0] | ||
node1 = self.nodes[1] | ||
node2 = self.nodes[2] | ||
|
||
self.generate(node0, 101) | ||
balance = node0.getbalance() | ||
assert_equal(balance['bitcoin'], 21000000) | ||
|
||
self.log.info("Create UTXOs") | ||
many = {} | ||
num = 25 | ||
for i in range(num): | ||
addr = node0.getnewaddress() | ||
info = node0.getaddressinfo(addr) | ||
many[info['unconfidential']] = 1 | ||
for i in range(10): | ||
addr = node1.getnewaddress() | ||
info = node1.getaddressinfo(addr) | ||
many[info['unconfidential']] = 1 | ||
for i in range(10): | ||
addr = node2.getnewaddress() | ||
info = node2.getaddressinfo(addr) | ||
many[info['unconfidential']] = 1 | ||
|
||
txid = node0.sendmany("", many) | ||
self.generate(node0, 1) | ||
|
||
self.log.info("Send explicit tx to node 0") | ||
addr = node0.getnewaddress() | ||
info = node0.getaddressinfo(addr) | ||
txid = node0.sendtoaddress(info['unconfidential'], 1.0, "", "", False, None, None, None, None, None, None, feerate) | ||
tx = node0.gettransaction(txid, True, True) | ||
decoded = tx['decoded'] | ||
vin = decoded['vin'] | ||
vout = decoded['vout'] | ||
assert_equal(len(vin), 2) | ||
assert_equal(len(vout), 3) | ||
assert_equal(tx['fee']['bitcoin'], Decimal('-0.00000326')) | ||
assert_equal(decoded['vsize'], 326) | ||
self.generate(node0, 1) | ||
|
||
self.log.info("Send confidential tx to node 0") | ||
addr = node0.getnewaddress() | ||
info = node0.getaddressinfo(addr) | ||
txid = node0.sendtoaddress(info['confidential'], 1.0, "", "", False, None, None, None, None, None, None, feerate) | ||
tx = node0.gettransaction(txid, True, True) | ||
decoded = tx['decoded'] | ||
vin = decoded['vin'] | ||
vout = decoded['vout'] | ||
assert_equal(len(vin), 2) | ||
assert_equal(len(vout), 3) | ||
assert_equal(tx['fee']['bitcoin'], Decimal('-0.00002575')) | ||
assert_equal(decoded['vsize'], 2575) | ||
self.generate(node0, 1) | ||
|
||
self.log.info("Send explicit tx to node 1") | ||
addr = node1.getnewaddress() | ||
info = node1.getaddressinfo(addr) | ||
txid = node0.sendtoaddress(info['unconfidential'], 1.0, "", "", False, None, None, None, None, None, None, feerate) | ||
tx = node0.gettransaction(txid, True, True) | ||
decoded = tx['decoded'] | ||
vin = decoded['vin'] | ||
vout = decoded['vout'] | ||
assert_equal(len(vin), 2) | ||
assert_equal(len(vout), 3) | ||
assert_equal(tx['fee']['bitcoin'], Decimal('-0.00000326')) | ||
assert_equal(decoded['vsize'], 326) | ||
self.generate(node0, 1) | ||
|
||
self.log.info("Send confidential (undiscounted) tx to node 1") | ||
addr = node1.getnewaddress() | ||
info = node1.getaddressinfo(addr) | ||
txid = node0.sendtoaddress(info['confidential'], 1.0, "", "", False, None, None, None, None, None, None, feerate) | ||
tx = node0.gettransaction(txid, True, True) | ||
decoded = tx['decoded'] | ||
vin = decoded['vin'] | ||
vout = decoded['vout'] | ||
assert_equal(len(vin), 2) | ||
assert_equal(len(vout), 3) | ||
assert_equal(tx['fee']['bitcoin'], Decimal('-0.00002575')) | ||
assert_equal(decoded['vsize'], 2575) | ||
self.generate(node0, 1) | ||
|
||
self.log.info("Send confidential (discounted) tx to node 1") | ||
bitcoin = 'b2e15d0d7a0c94e4e2ce0fe6e8691b9e451377f6e46e8045a86f7c4b5d4f0f23' | ||
addr = node1.getnewaddress() | ||
info = node1.getaddressinfo(addr) | ||
txid = node2.sendtoaddress(info['confidential'], 1.0, "", "", False, None, None, None, None, None, None, feerate) | ||
# node0 won't accept or relay the tx | ||
self.sync_mempools([node1, node2]) | ||
assert_equal(node0.getrawmempool(), []) | ||
self.generate(node2, 1, sync_fun=self.sync_blocks) | ||
for node in [node2, node1]: | ||
tx = node.gettransaction(txid, True, True) | ||
decoded = tx['decoded'] | ||
vin = decoded['vin'] | ||
vout = decoded['vout'] | ||
assert_equal(len(vin), 2) | ||
assert_equal(len(vout), 3) | ||
if 'bitcoin' in decoded['fee']: | ||
assert_equal(decoded['fee']['bitcoin'], Decimal('-0.00000437')) | ||
else: | ||
assert_equal(decoded['fee'][bitcoin], Decimal('0.00000437')) | ||
assert_equal(decoded['vsize'], 2575) | ||
assert_equal(decoded['discountvsize'], 437) | ||
|
||
# node0 should report the same discountvsize and vsize | ||
tx = node0.getrawtransaction(txid, True) | ||
assert_equal(tx['vsize'], 2575) | ||
assert_equal(tx['discountvsize'], 2575) | ||
|
||
|
||
if __name__ == '__main__': | ||
CTTest().main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters