feat: add calculate_fee and calculate_fee_rate on wallet

This commit is contained in:
Matthew
2023-12-16 19:24:02 -06:00
parent fc25cd709a
commit 3789c1dcd6
11 changed files with 180 additions and 13 deletions

View File

@@ -55,8 +55,14 @@ class LiveWalletTest {
assertTrue(walletDidSign)
val tx: Transaction = psbt.extractTx()
println("Txid is: ${tx.txid()}")
val txFee: ULong = wallet.calculateFee(tx)
println("Tx fee is: ${txFee}")
val feeRate: FeeRate = wallet.calculateFeeRate(tx)
println("Tx fee rate is: ${feeRate.asSatPerVb()} sat/vB")
esploraClient.broadcast(tx)
}
}