Open
Description
I'm using version 0.30.0 of flutter_bdk
in my application, but I'm unable to complete a Bitcoin transaction on the testnet. I'm calling the method to create the transaction, but it doesn't print the transaction ID. It is getting stuck into bdkFfi.broadcastStaticMethodApi method.
/// The function for broadcasting a transaction
Future<void> broadcast(Transaction tx) async {
try {
final txid = await bdkFfi.broadcastStaticMethodApi(
blockchainId: _blockchain, tx: tx._tx!);
if (kDebugMode) {
print(txid);
}
} on bridge.Error catch (e) {
throw handleBdkException(e);
}
}
Metadata
Metadata
Assignees
Labels
No labels