Skip to content
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

fix(sentinel-strongbox): <- update imports to NetworkId in that #26

Merged
merged 3 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion v3_bridges/sentinel-strongbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
edition = "2021"
version = "0.1.0"
version = "0.1.1"
name = "sentinel-strongbox"
authors = [ "Greg Kapka <gregkapka@gmail.com>" ]
description = "The android/strongbox library for a pTokens EVM sentinel"
Expand Down Expand Up @@ -30,5 +30,6 @@ common = { workspace = true }
common_eth = { workspace = true }
common_sentinel = { workspace = true }
common_metadata = { workspace = true }
common_network_ids = { workspace = true }
common_debug_signers = { workspace = true }
common_file_logger = { workspace = true, optional = true }
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use common_eth::{Chain, ChainDbUtils};
use common_metadata::MetadataChainId;
use common_sentinel::{NetworkId, SentinelError, WebSocketMessagesEncodable, WebSocketMessagesError};
use common_network_ids::NetworkId;
use common_sentinel::{SentinelError, WebSocketMessagesEncodable, WebSocketMessagesError};
use serde_json::json;

use crate::android::State;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
use common_eth::{Chain, ChainDbUtils, ChainError};
use common_metadata::MetadataChainId;
use common_network_ids::{NetworkId, NetworkIdError};
use common_sentinel::{
CancellableUserOps,
LatestBlockInfo,
LatestBlockInfos,
NetworkId,
NetworkIdError,
SentinelDbUtils,
SentinelError,
WebSocketMessagesEncodable,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use common_sentinel::{CoreState, NetworkId, SentinelError, WebSocketMessagesEncodable};
use common_network_ids::NetworkId;
use common_sentinel::{CoreState, SentinelError, WebSocketMessagesEncodable};
use serde_json::json;

use crate::android::State;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use common_eth::{Chain, ChainDbUtils};
use common_metadata::MetadataChainId;
use common_network_ids::NetworkId;
use common_sentinel::{
LatestBlockInfo,
LatestBlockInfos,
NetworkId,
SentinelError,
WebSocketMessagesEncodable,
WebSocketMessagesError,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use common_eth::{Chain, ChainDbUtils};
use common_metadata::MetadataChainId;
use common_sentinel::{NetworkId, NetworkIdError, SentinelError, SentinelStatus, WebSocketMessagesEncodable};
use common_network_ids::{NetworkId, NetworkIdError};
use common_sentinel::{SentinelError, SentinelStatus, WebSocketMessagesEncodable};
use serde_json::json;

use crate::android::State;
Expand Down
Loading