Skip to content
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
24 changes: 12 additions & 12 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -503,10 +503,10 @@ ark-groth16 = "0.4.0"
ark-relations = "0.4.0"
ark-serialize = "0.4.0"
ark-std = { version = "0.4.0", features = ["getrandom"] }
lumio-indexer-processor-sdk = { git = "https://github.com/vladimirovmm/lumio-indexer-processor-sdk.git", features = [
lumio-indexer-processor-sdk = { git = "ssh://git@github.com/pontem-network/lumio-indexer-processor-sdk.git", features = [
"postgres_partial",
] }
lumio-moving-average = { git = "https://github.com/vladimirovmm/lumio-indexer-processors.git" }
lumio-moving-average = { git = "ssh://git@github.com/pontem-network/lumio-indexer-processors.git" }
assert_approx_eq = "1.1.0"
async-channel = "1.7.1"
async-mutex = "1.4.0"
Expand Down Expand Up @@ -710,7 +710,7 @@ pretty = "0.10.0"
pretty_assertions = "1.2.1"
# We set default-features to false so we don't onboard the libpq dep. See more here:
# https://github.com/aptos-labs/aptos-core/pull/12568
processor = { git = "https://github.com/vladimirovmm/lumio-indexer-processors-v2.git", default-features = false }
processor = { git = "ssh://git@github.com/pontem-network/lumio-indexer-processors-v2.git", default-features = false }
procfs = "0.14.1"
proc-macro2 = "1.0.38"
project-root = "0.2.2"
Expand Down
4 changes: 2 additions & 2 deletions crates/lumio-faucet/core/src/funder/mint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
use super::{FunderHealthMessage, FunderTrait};
use crate::endpoints::{LumioTapError, LumioTapErrorCode};
use anyhow::{Context, Result};
use async_trait::async_trait;
use lumio_logger::info;
use lumio_sdk::{
crypto::ed25519::Ed25519PublicKey,
rest_client::{LumioBaseUrl, Client},
rest_client::{Client, LumioBaseUrl},
transaction_builder::{lumio_stdlib, TransactionFactory},
types::{
account_address::AccountAddress,
Expand All @@ -19,7 +20,6 @@ use lumio_sdk::{
LocalAccount,
},
};
use async_trait::async_trait;
use reqwest::Url;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
Expand Down