Skip to content

Commit b472412

Browse files
committed
fix(clippy): suppress too_many_arguments on contract mint entry points
1 parent b53d28a commit b472412

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

contracts/maize-receipt/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ impl MaizeReceiptContract {
160160
Ok(())
161161
}
162162

163+
#[allow(clippy::too_many_arguments)]
163164
pub fn mint(
164165
env: Env,
165166
custodian: Address,

contracts/sesame-receipt/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ impl SesameReceiptContract {
134134
// Mint
135135
// -----------------------------------------------------------------------
136136

137+
#[allow(clippy::too_many_arguments)]
137138
pub fn mint(
138139
env: Env,
139140
custodian: Address,

0 commit comments

Comments
 (0)