solana: verify that new guardian set isn't empty

ghstack-source-id: 4fc1d94152
Pull Request resolved: https://github.com/certusone/wormhole/pull/101
This commit is contained in:
Leo 2020-11-19 12:53:18 +01:00
parent ee71c73611
commit fdc2be10b3
1 changed files with 4 additions and 0 deletions

View File

@ -735,6 +735,10 @@ impl Bridge {
return Err(Error::AlreadyExists.into());
}
if b.new_keys.len() == 0 {
return Err(Error::InvalidVAAFormat.into());
}
if b.new_keys.len() > MAX_LEN_GUARDIAN_KEYS {
return Err(Error::InvalidVAAFormat.into());
}