Skip to content

Commit 0930bdd

Browse files
committed
fix the double utxo
1 parent 1ebf47b commit 0930bdd

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

faucet-api/Controllers/FaucetController.cs

+19-4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ public FaucetController(IOptions<BitcoinSettings> bitcoinSettings, IIndexerServi
6565
_indexerService = indexerService ?? throw new ArgumentNullException(nameof(indexerService), "IndexerService is not provided.");
6666
}
6767

68+
[HttpGet("send/{address}/{address2}/{amount?}")]
69+
public async Task<IActionResult> SendFunds(string address, string address2, long? amount)
70+
{
71+
return await SendFunds(new SendRequest { ToAddress = address, Amount = amount ?? 20, ToAddress2 = address2, Amount2 = amount ?? 20 });
72+
}
73+
6874
[HttpGet("send/{address}/{amount?}")]
6975
public async Task<IActionResult> SendFunds(string address, long? amount)
7076
{
@@ -83,6 +89,9 @@ public async Task<IActionResult> SendFunds([FromBody] SendRequest request)
8389
var toAddress = BitcoinAddress.Create(request.ToAddress, _network);
8490
var amount = Money.Coins(request.Amount);
8591

92+
BitcoinAddress? toAddress2 = !string.IsNullOrEmpty(request.ToAddress2) ? BitcoinAddress.Create(request.ToAddress2, _network) : null;
93+
Money amount2 = Money.Coins(request.Amount2 > 0 ? request.Amount2 : request.Amount);
94+
8695
var keyPath = new KeyPath($"m/84'/1'/0'/0/{_bitcoinSettings.ChangeAddressIndex}");
8796
var privateKey = _masterKey.Derive(keyPath).PrivateKey;
8897
var fromAddress = privateKey.PubKey.GetAddress(ScriptPubKeyType.Segwit, _network);
@@ -100,14 +109,18 @@ public async Task<IActionResult> SendFunds([FromBody] SendRequest request)
100109
}).Take(2).ToList();
101110

102111
var txBuilder = _network.CreateTransactionBuilder();
103-
var tx = txBuilder
112+
var txbuilder = txBuilder
104113
.AddCoins(coins)
105114
.AddKeys(privateKey)
106115
.Send(toAddress, amount)
107-
.Send(toAddress, amount)
108116
.SetChange(fromAddress)
109-
.SendFees(Money.Satoshis(_bitcoinSettings.FeeRate))
110-
.BuildTransaction(true);
117+
.SendFees(Money.Satoshis(_bitcoinSettings.FeeRate));
118+
119+
120+
if (toAddress2 != null)
121+
txbuilder.Send(toAddress2, amount2);
122+
123+
var tx = txbuilder.BuildTransaction(true);
111124

112125
if (!txBuilder.Verify(tx))
113126
{
@@ -207,7 +220,9 @@ public async Task<IActionResult> CheckNetworkStatus()
207220
public class SendRequest
208221
{
209222
public string ToAddress { get; set; }
223+
public string ToAddress2 { get; set; }
210224
public decimal Amount { get; set; }
225+
public decimal Amount2 { get; set; }
211226
}
212227
}
213228
}

faucet-api/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.0.13</Version>
3+
<Version>1.0.14</Version>
44
<Authors>Blockcore</Authors>
55
<PackageLicenseExpression>MIT</PackageLicenseExpression>
66
<PackageProjectUrl>https://github.com/block-core/bitcoin-custom-signet</PackageProjectUrl>

faucet-api/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44
faucet-api:
55
container_name: faucet-api
6-
image: blockcore/faucet-api:1.0.13
6+
image: blockcore/faucet-api:1.0.14
77
mem_limit: 1024m
88
cpus: 0.200
99
environment:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-api",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "Claim free Bitcoin instantly with your Testnet wallet address. Simple and secure!",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)