Skip to content

Commit 172276e

Browse files
committed
v0.8.14: raise minimal transaction fee to 0.01000448 WART
1 parent 84ee6cc commit 172276e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project( 'Warthog', ['c','cpp'],
2-
version : '0.8.13',
2+
version : '0.8.14',
33
default_options : ['warning_level=3', 'cpp_std=c++20'])
44

55
libuv_dep = subproject('libuv', default_options : ['warning_level=0', 'werror=false', 'build_tests=false']).get_variable('libuv_dep')

src/node/config/config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ struct Config {
3333
struct Node {
3434
std::optional<SnapshotSigner> snapshotSigner;
3535
EndpointAddress bind;
36-
std::atomic<CompactUInt> minMempoolFee { CompactUInt::compact(Funds::from_value(9992).value()) };
36+
std::atomic<CompactUInt> minMempoolFee { CompactUInt::compact(Funds::from_value(1000448).value()) };
3737
bool isolated { false };
3838
bool disableTxsMining { false }; // don't mine transactions
3939
std::atomic<bool> logCommunication { false };

0 commit comments

Comments
 (0)