Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ligustah committed May 2, 2024
1 parent 88f3bf6 commit b0dd34e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/storage.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
use crate::config::Config;
use crate::types::{InclusionClaim, Premint, PremintName, PremintTypes};
use std::str::FromStr;

use alloy::primitives::Address;
use async_trait::async_trait;
use eyre::WrapErr;
use serde::{Deserialize, Serialize};
use sqlx::sqlite::SqliteConnectOptions;
use sqlx::Row;
use sqlx::{QueryBuilder, Sqlite, SqlitePool};
use std::str::FromStr;

use crate::config::Config;
use crate::types::{InclusionClaim, Premint, PremintName, PremintTypes};

async fn init_db(config: &Config) -> SqlitePool {
let expect_msg =
Expand Down

0 comments on commit b0dd34e

Please sign in to comment.