Skip to content

Commit

Permalink
ord utox 锁仓改成1000
Browse files Browse the repository at this point in the history
  • Loading branch information
robotchangzhang committed Mar 7, 2023
1 parent 6a870f4 commit c524518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/subcommand/wallet/transaction_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ type Result<T> = std::result::Result<T, Error>;
impl TransactionBuilder {
const ADDITIONAL_INPUT_VBYTES: usize = 58;
const ADDITIONAL_OUTPUT_VBYTES: usize = 43;
const MAX_POSTAGE: Amount = Amount::from_sat(2 * 500);
const MAX_POSTAGE: Amount = Amount::from_sat(2 * 1_000);
const SCHNORR_SIGNATURE_SIZE: usize = 64;
pub(crate) const TARGET_POSTAGE: Amount = Amount::from_sat(500);
pub(crate) const TARGET_POSTAGE: Amount = Amount::from_sat(1_000);

pub fn build_transaction_with_postage(
outgoing: SatPoint,
Expand Down

0 comments on commit c524518

Please sign in to comment.