We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3e0f49 commit 9f26ac5Copy full SHA for 9f26ac5
target_chains/fuel/contracts/pyth-contract/src/main.sw
@@ -935,3 +935,4 @@ fn verify_governance_vm(encoded_vm: Bytes) -> WormholeVM {
935
set_last_executed_governance_sequence(vm.sequence);
936
vm
937
}
938
+
target_chains/fuel/contracts/tests/utils/interface/wormhole_guardians.rs
@@ -59,10 +59,11 @@ pub(crate) async fn submit_new_guardian_set(
59
contract: &PythOracleContract<WalletUnlocked>,
60
encoded_vm: Bytes,
61
) -> CallResponse<()> {
62
- let result = contract
+ contract
63
.methods()
64
.submit_new_guardian_set(encoded_vm)
65
.call()
66
.await
67
- .map_err(handle_error).unwrap()
+ .map_err(handle_error)
68
+ .unwrap()
69
0 commit comments