Browse Source

addressed nit

Ayush Suresh 4 tháng trước cách đây
mục cha
commit
61a5a5ca8c
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  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)?;