-
Notifications
You must be signed in to change notification settings - Fork 336
fix: unbreak main branch builds #3716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| [package] | ||
| name = "fortuna" | ||
| version = "9.4.0" | ||
| version = "9.4.1" | ||
| edition = "2021" | ||
|
|
||
| [lib] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
| anyhow::Result, | ||
| chrono::DateTime, | ||
| ethers::{ | ||
| core::utils::hex::ToHex, | ||
| core::utils::hex::ToHexExt, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚩 ToHex → ToHexExt trait migration: test code uses turbofish syntax The import was changed from Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| prelude::TxHash, | ||
| types::{Address, Bytes, U256}, | ||
| utils::keccak256, | ||
|
|
@@ -772,7 +772,7 @@ | |
| .query() | ||
| .search(format!( | ||
| "0x{}", | ||
| status.request_tx_hash.encode_hex::<String>() | ||
|
Check failure on line 775 in apps/fortuna/src/history.rs
|
||
| )) | ||
| .unwrap() | ||
| .execute() | ||
|
|
@@ -782,7 +782,7 @@ | |
|
|
||
| let logs = history | ||
| .query() | ||
| .search(status.request_tx_hash.encode_hex::<String>().to_uppercase()) | ||
|
Check failure on line 785 in apps/fortuna/src/history.rs
|
||
| .unwrap() | ||
| .execute() | ||
| .await | ||
|
|
@@ -793,7 +793,7 @@ | |
| .query() | ||
| .search(format!( | ||
| "0x{}", | ||
| status.request_tx_hash.encode_hex::<String>().to_uppercase() | ||
|
Check failure on line 796 in apps/fortuna/src/history.rs
|
||
| )) | ||
| .unwrap() | ||
| .execute() | ||
|
|
@@ -822,7 +822,7 @@ | |
|
|
||
| let logs = history | ||
| .query() | ||
| .search(format!("0x{}", reveal_tx_hash.encode_hex::<String>())) | ||
|
Check failure on line 825 in apps/fortuna/src/history.rs
|
||
| .unwrap() | ||
| .execute() | ||
| .await | ||
|
|
@@ -831,7 +831,7 @@ | |
|
|
||
| let logs = history | ||
| .query() | ||
| .search(reveal_tx_hash.encode_hex::<String>().to_uppercase()) | ||
|
Check failure on line 834 in apps/fortuna/src/history.rs
|
||
| .unwrap() | ||
| .execute() | ||
| .await | ||
|
|
@@ -842,7 +842,7 @@ | |
| .query() | ||
| .search(format!( | ||
| "0x{}", | ||
| reveal_tx_hash.encode_hex::<String>().to_uppercase() | ||
|
Check failure on line 845 in apps/fortuna/src/history.rs
|
||
| )) | ||
| .unwrap() | ||
| .execute() | ||
|
|
@@ -872,7 +872,7 @@ | |
|
|
||
| let logs = history | ||
| .query() | ||
| .search(format!("0x{}", status.sender.encode_hex::<String>())) | ||
|
Check failure on line 875 in apps/fortuna/src/history.rs
|
||
| .unwrap() | ||
| .network_id(status.network_id) | ||
| .execute() | ||
|
|
@@ -882,7 +882,7 @@ | |
|
|
||
| let logs = history | ||
| .query() | ||
| .search(status.sender.encode_hex::<String>().to_uppercase()) | ||
|
Check failure on line 885 in apps/fortuna/src/history.rs
|
||
| .unwrap() | ||
| .network_id(status.network_id) | ||
| .execute() | ||
|
|
@@ -894,7 +894,7 @@ | |
| .query() | ||
| .search(format!( | ||
| "0x{}", | ||
| status.sender.encode_hex::<String>().to_uppercase() | ||
|
Check failure on line 897 in apps/fortuna/src/history.rs
|
||
| )) | ||
| .unwrap() | ||
| .network_id(status.network_id) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "dependencies": { | ||
| "@evolution-sdk/evolution": "^0.3.29" | ||
| "@evolution-sdk/evolution": "0.3.28" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚩 Dependency downgrade from ^0.3.29 to pinned 0.3.28 The Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| }, | ||
| "description": "User-facing SDK for the Pyth Lazer Cardano integration", | ||
| "devDependencies": { | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,6 +42,7 @@ base64 = "0.21.0" | |
| rand = "0.7.0" | ||
| serde_json = "1.0.96" | ||
| solana-client = ">=1.13.6" | ||
| solana-program = ">=1.13.6" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Cargo.lock not updated after adding solana-program dev-dependency to pythnet_sdk A new dev-dependency Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
| solana-sdk = ">=1.13.6" | ||
| proptest = "1.1.0" | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Cargo.lock not updated after fortuna version bump
The fortuna
Cargo.tomlversion was bumped from9.4.0to9.4.1, but the workspaceCargo.lockstill recordsversion = "9.4.0"for thefortunapackage. This violates the AGENTS.md rule: "Important: When changing code, bump the package version inCargo.tomlbased on semantic versioning. Runcargo checkto ensure the changes are reflected in the Cargo.lock lockfile." Runningcargo checkorcargo update -p fortunawould synchronize the lockfile.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.