File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -128,22 +128,22 @@ export class Faucet {
128128
129129 const jobs : SendJob [ ] = [ ] ;
130130 for ( const denom of availableTokenDenoms ) {
131- const refillDistibutors = distributorAccounts . filter ( ( account ) =>
131+ const refillDistributors = distributorAccounts . filter ( ( account ) =>
132132 this . tokenManager . needsRefill ( account , denom ) ,
133133 ) ;
134134
135135 if ( this . logging ) {
136136 console . info ( `Refilling ${ denom } of:` ) ;
137137 console . info (
138- refillDistibutors . length
139- ? refillDistibutors . map ( ( r ) => ` ${ debugAccount ( r ) } ` ) . join ( "\n" )
138+ refillDistributors . length
139+ ? refillDistributors . map ( ( r ) => ` ${ debugAccount ( r ) } ` ) . join ( "\n" )
140140 : " none" ,
141141 ) ;
142142 }
143- for ( const refillDistibutor of refillDistibutors ) {
143+ for ( const refillDistributor of refillDistributors ) {
144144 jobs . push ( {
145145 sender : this . holderAddress ,
146- recipient : refillDistibutor . address ,
146+ recipient : refillDistributor . address ,
147147 amount : this . tokenManager . refillAmount ( denom ) ,
148148 } ) ;
149149 }
You can’t perform that action at this time.
0 commit comments