Skip to content

Commit c53e855

Browse files
committed
gdk-rust: temporary fix populate bug
1 parent 468017e commit c53e855

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subprojects/gdk_rust/gdk_electrum/src/account.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ pub fn create_tx(
937937
account: &Account,
938938
request: &mut CreateTransaction,
939939
) -> Result<TransactionMeta, Error> {
940-
populate_unspent_from_db(account, request)?;
940+
let _ = populate_unspent_from_db(account, request); // FIXME: throw error if cannot be populated
941941
info!("create_tx {:?}", request);
942942

943943
let network = &account.network;

0 commit comments

Comments
 (0)