Skip to content

Commit

Permalink
Make NameRecord pub
Browse files Browse the repository at this point in the history
  • Loading branch information
gemcoder21 committed Aug 3, 2023
1 parent a9fcbf3 commit d03500d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions primitives/src/name.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use serde::Serialize;

#[typeshare(swift="Codable")]
#[allow(dead_code)]
struct NameRecord {
name: String,
chain: Chain,
address: String,
provider: NameProvider,
pub struct NameRecord {
pub name: String,
pub chain: Chain,
pub address: String,
pub provider: NameProvider,
}

#[derive(Debug, Serialize)]
Expand Down

0 comments on commit d03500d

Please sign in to comment.