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:
Hendrik Hofstadt 2021-08-12 13:23:53 +02:00
parent 0f2d3b9f45
commit 1f6b3ba323
1 changed files with 1 additions and 1 deletions

View File

@ -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];