Increase absurdfee from mempool space

This commit is contained in:
nicolas.dorier 2023-12-17 11:54:56 +09:00
parent 541cef55b8
commit 0d61e45cc6
No known key found for this signature in database
GPG key ID: 6618763EF09186FE

View file

@ -70,7 +70,7 @@ public class MempoolSpaceFeeProvider(
return res switch
{
< 1m => 1m,
> 850 => 850,
> 850m => 2000m,
_ => res
};
}