소스 검색

addressed nit

Ayush Suresh 4 달 전
부모
커밋
61a5a5ca8c
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      target_chains/stylus/contracts/pyth-receiver/src/lib.rs

+ 2 - 0
target_chains/stylus/contracts/pyth-receiver/src/lib.rs

@@ -644,6 +644,8 @@ impl PythReceiver {
     ) -> Result<(), PythReceiverError> {
         let wormhole: IWormholeContract = IWormholeContract::new(address);
         let config = Call::new();
+
+        // Make sure the contract at the new Wormhole address is initialized and functional by testing it on the SetWormholeAddress instruction VAA
         wormhole
             .parse_and_verify_vm(config, data.clone())
             .map_err(|_| PythReceiverError::InvalidVaa)?;