Pack more signatures in the verification tx
Since we now use double hashing, this will work no matter how large the payload is Change-Id: I79939e9a0698bd71602aae1135d4d40631bb4438
This commit is contained in:
parent
0f2d3b9f45
commit
1f6b3ba323
|
@ -245,7 +245,7 @@ pub fn verify_signatures_ix(
|
|||
};
|
||||
|
||||
let mut verify_txs: Vec<Vec<Instruction>> = Vec::new();
|
||||
for (_tx_index, chunk) in signature_items.chunks(6).enumerate() {
|
||||
for (_tx_index, chunk) in signature_items.chunks(7).enumerate() {
|
||||
let mut secp_payload = Vec::new();
|
||||
let mut signature_status = [-1i8; 19];
|
||||
|
||||
|
|
Loading…
Reference in New Issue