Skip to content

Commit

Permalink
fix: add missing derive for TokenizedAbi
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Jan 16, 2024
1 parent 6c18e4a commit decf850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/parser/src/abi/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::collections::HashMap;
use crate::tokens::{Array, CompositeInner, CompositeType, CoreBasic, Function, Token};
use crate::{CainomeResult, Error};

#[derive(Debug)]
#[derive(Debug, Clone, PartialEq, Default)]
pub struct TokenizedAbi {
/// All enums found in the contract ABI.
pub enums: Vec<Token>,
Expand Down

0 comments on commit decf850

Please sign in to comment.