Fix invalid list of signers for PW funds transfer
This commit is contained in:
parent
477dc7246a
commit
9abc2f5224
1 changed files with 2 additions and 2 deletions
|
|
@ -901,9 +901,9 @@ void sidechain_net_handler_bitcoin::recreate_primary_wallet() {
|
|||
|
||||
if (!tx_str.empty()) {
|
||||
|
||||
auto active_sons = gpo.active_sons;
|
||||
auto signer_sons = prev_sw->sons;
|
||||
std::vector<son_id_type> signers;
|
||||
for (const son_info &si : active_sons) {
|
||||
for (const son_info &si : signer_sons) {
|
||||
signers.push_back(si.son_id);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue