KeyringCoreV2Base::collectFees() should use Address::sendValue() instead of address.transfer()
Description
address.transfer() hardcodes 2300 gas to forward, which may not be enough if gas costs change in the future or to is a smart contract wallet that does some logic in its receive()/fallback() function.
Recommendation
Use address::sendValue() from OpenZeppelin.
Status
Addressed in #ffe8b11.