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:
parent
ee71c73611
commit
fdc2be10b3
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue