Can you point me exactly here is that option to change fees? I can't find it!
Edit;
Ohh, I found it, nevermind!
Probably worth of opening an issue maybe. I'll try to change our channel fees to see if I have the same behaviour!
Edit 1;
Mine, keeps the setting. I had it [base, ppm] = [0, 25] and changed it to [base, ppm] = [100, 500] and then changed back to [base, ppm] = [0, 25] and after cicking update an open again the menu, the values were stick to the [base, ppm] = [0, 25].
Going to check in the command line, step at a step! To rule out any visual glitch from the frontend.
Edit 2;
So:
Step 1 - Change fees to [base, ppm] = [100, 500] in RTL. Wait a few seconds.
Step 2 - Check in command line:
{
"channels": [
{
"source": "03cd32110547654132187f08e217b20e3ce69f49dff5119da5597a5c0f8a2c7a5e",
"destination": "03fef777d58a529df02a3fb267690e0c9033767b555cc1c63844bb2d3498789f91",
"short_channel_id": "744268x1405x1",
"public": true,
"satoshis": 1300000,
"amount_msat": "1300000000msat",
"message_flags": 1,
"channel_flags": 0,
"active": true,
"last_update": 1660473314,
"base_fee_millisatoshi": 1000,
"fee_per_millionth": 25,
"delay": 34,
"htlc_minimum_msat": "0msat",
"htlc_maximum_msat": "1287000000msat",
"features": ""
},
{
"source": "03fef777d58a529df02a3fb267690e0c9033767b555cc1c63844bb2d3498789f91",
"destination": "03cd32110547654132187f08e217b20e3ce69f49dff5119da5597a5c0f8a2c7a5e",
"short_channel_id": "744268x1405x1",
"public": true,
"satoshis": 1300000,
"amount_msat": "1300000000msat",
"message_flags": 1,
"channel_flags": 1,
"active": true,
"last_update": 1660559820,
"base_fee_millisatoshi": 100, <-------- Correct
"fee_per_millionth": 500, <-------- Correct
"delay": 34,
"htlc_minimum_msat": "1000msat",
"htlc_maximum_msat": "830000000msat",
"features": ""
}
]
}
Step 3 - Change fees to [base, ppm] = [0, 25] in RTL and wait a few seconds.
Step 4 - Check in RTL if values are still there by going to the Update Fees menu again. They are still there
Step 4 - Check in command line
{
"channels": [
{
"source": "03cd32110547654132187f08e217b20e3ce69f49dff5119da5597a5c0f8a2c7a5e",
"destination": "03fef777d58a529df02a3fb267690e0c9033767b555cc1c63844bb2d3498789f91",
"short_channel_id": "744268x1405x1",
"public": true,
"satoshis": 1300000,
"amount_msat": "1300000000msat",
"message_flags": 1,
"channel_flags": 0,
"active": true,
"last_update": 1660473314,
"base_fee_millisatoshi": 1000,
"fee_per_millionth": 25,
"delay": 34,
"htlc_minimum_msat": "0msat",
"htlc_maximum_msat": "1287000000msat",
"features": ""
},
{
"source": "03fef777d58a529df02a3fb267690e0c9033767b555cc1c63844bb2d3498789f91",
"destination": "03cd32110547654132187f08e217b20e3ce69f49dff5119da5597a5c0f8a2c7a5e",
"short_channel_id": "744268x1405x1",
"public": true,
"satoshis": 1300000,
"amount_msat": "1300000000msat",
"message_flags": 1,
"channel_flags": 1,
"active": true,
"last_update": 1660560197,
"base_fee_millisatoshi": 0, <-------- Correct
"fee_per_millionth": 25, <-------- Correct
"delay": 34,
"htlc_minimum_msat": "1000msat",
"htlc_maximum_msat": "830000000msat",
"features": ""
}
]
}
So, on my side, things seems to be working!