Skip to content

Commit b02b567

Browse files
authored
Merge pull request #429 from metaplex-foundation/fix/update_fungible_token_count
fix(postgre-client): fungible parameter count
2 parents a2472a9 + e8bfb5f commit b02b567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgre-client/src/asset_index_client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub const INSERT_ASSET_PARAMETERS_COUNT: usize = 19;
2828
pub const DELETE_ASSET_CREATOR_PARAMETERS_COUNT: usize = 2;
2929
pub const INSERT_ASSET_CREATOR_PARAMETERS_COUNT: usize = 4;
3030
pub const INSERT_AUTHORITY_PARAMETERS_COUNT: usize = 3;
31-
pub const INSERT_FUNGIBLE_TOKEN_PARAMETERS_COUNT: usize = 4;
31+
pub const INSERT_FUNGIBLE_TOKEN_PARAMETERS_COUNT: usize = 5;
3232

3333
impl PgClient {
3434
pub(crate) async fn fetch_last_synced_id_impl(

0 commit comments

Comments
 (0)