futureversecom / trn-seed

Implementation of The Root Network node in Rust, based on the Substrate framework.

Home Page:https://www.therootnetwork.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XRPL SignerListSet quorum is incorrect

surangap opened this issue · comments

currently the quorum is taken as (previous validator count - 1)
It should be (new validator count -1)

in LN ->

let signer_quorum: u32 = T::EthyAdapter::xrp_validators().len().saturating_sub(1) as u32;