Skip to content

Commit

Permalink
Fix dart/flutter
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeross committed Jan 6, 2025
1 parent be9daf1 commit 86ac5aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ typedef struct _Dart_Handle* Dart_Handle;

#define LIQUID_FEE_RATE_SAT_PER_VBYTE 0.1

#define LIQUID_FEE_RATE_MSAT_PER_VBYTE (float)(LIQUID_FEE_RATE_SAT_PER_VBYTE * 1000.0)

/**
* The minimum acceptable fee rate when claiming using zero-conf
*/
Expand Down
2 changes: 2 additions & 0 deletions packages/dart/lib/src/frb_generated.io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6926,6 +6926,8 @@ const int ESTIMATED_BTC_LOCKUP_TX_VSIZE = 154;

const double LIQUID_FEE_RATE_SAT_PER_VBYTE = 0.1;

const double LIQUID_FEE_RATE_MSAT_PER_VBYTE = 100.0;

const int DEFAULT_ZERO_CONF_MIN_FEE_RATE_TESTNET = 100;

const int DEFAULT_ZERO_CONF_MIN_FEE_RATE_MAINNET = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5443,6 +5443,8 @@ const int ESTIMATED_BTC_LOCKUP_TX_VSIZE = 154;

const double LIQUID_FEE_RATE_SAT_PER_VBYTE = 0.1;

const double LIQUID_FEE_RATE_MSAT_PER_VBYTE = 100.0;

const int DEFAULT_ZERO_CONF_MIN_FEE_RATE_TESTNET = 100;

const int DEFAULT_ZERO_CONF_MIN_FEE_RATE_MAINNET = 10;
Expand Down

0 comments on commit 86ac5aa

Please sign in to comment.