Skip to content

Commit 974ffc2

Browse files
authored
chore: cleanup and tests config - for the green CI (#950)
1 parent 17e7cf0 commit 974ffc2

File tree

2 files changed

+1
-22
lines changed

2 files changed

+1
-22
lines changed

e2e-tests/config/substrate/ci_nodes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"deployment_mc_epoch": 1017,
2+
"deployment_mc_epoch": 1018,
33
"deployment_version": "master",
44
"test_environment": "ci",
55
"keys_path": "secrets/substrate/staging/keys",

toolkit/data-sources/db-sync/src/db_model.rs

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,6 @@ pub(crate) struct MainchainTxOutputRow {
8181
pub tx_inputs: Vec<String>,
8282
}
8383

84-
#[derive(Debug, Clone, sqlx::FromRow, PartialEq)]
85-
pub(crate) struct MintAction {
86-
pub tx_hash: [u8; 32],
87-
pub asset_name: Vec<u8>,
88-
pub block_no: BlockNumber,
89-
pub tx_index_in_block: i32,
90-
pub redeemer: Option<DbDatum>,
91-
}
92-
9384
#[derive(Debug, Clone, sqlx::FromRow, PartialEq)]
9485
pub(crate) struct StakePoolEntry {
9586
pub pool_hash: [u8; 28],
@@ -152,18 +143,6 @@ impl<'r> Decode<'r, Postgres> for NativeTokenAmount {
152143
}
153144
}
154145

155-
#[derive(Debug, Clone, sqlx::FromRow, PartialEq)]
156-
pub(crate) struct TxPosition {
157-
pub block_number: BlockNumber,
158-
pub index: TxIndexInBlock,
159-
}
160-
161-
impl Default for TxPosition {
162-
fn default() -> Self {
163-
Self { block_number: BlockNumber(0), index: TxIndexInBlock(0) }
164-
}
165-
}
166-
167146
#[derive(Debug, Clone, sqlx::FromRow, PartialEq)]
168147
pub(crate) struct BlockTokenAmount {
169148
pub block_hash: [u8; 32],

0 commit comments

Comments
 (0)