Skip to content

Commit 17f1f81

Browse files
authored
Merge pull request oreoslabs#53 from dguenther/default-fee
Use wallet-recommended transaction fee by default
2 parents b869791 + 36a816c commit 17f1f81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/server/src/handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ pub async fn create_transaction_handler(
470470
.create_transaction(RpcCreateTxRequest {
471471
account: db_account.unwrap().name,
472472
outputs: Some(outputs),
473-
fee: Some(create_transaction.fee.unwrap_or("1".into())),
473+
fee: create_transaction.fee,
474474
expiration_delta: Some(create_transaction.expiration_delta.unwrap_or(30)),
475475
mints: Some(mints),
476476
burns: Some(burns),

0 commit comments

Comments
 (0)