File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -720,7 +720,7 @@ export class ConstructorFragment extends Fragment {
720
720
return JSON . stringify ( {
721
721
type : "constructor" ,
722
722
stateMutability : ( ( this . stateMutability !== "nonpayable" ) ? this . stateMutability : undefined ) ,
723
- payble : this . payable ,
723
+ payable : this . payable ,
724
724
gas : ( this . gas ? this . gas . toNumber ( ) : undefined ) ,
725
725
inputs : this . inputs . map ( ( input ) => JSON . parse ( input . format ( format ) ) )
726
726
} ) ;
@@ -817,10 +817,10 @@ export class FunctionFragment extends ConstructorFragment {
817
817
name : this . name ,
818
818
constant : this . constant ,
819
819
stateMutability : ( ( this . stateMutability !== "nonpayable" ) ? this . stateMutability : undefined ) ,
820
- payble : this . payable ,
820
+ payable : this . payable ,
821
821
gas : ( this . gas ? this . gas . toNumber ( ) : undefined ) ,
822
822
inputs : this . inputs . map ( ( input ) => JSON . parse ( input . format ( format ) ) ) ,
823
- ouputs : this . outputs . map ( ( output ) => JSON . parse ( output . format ( format ) ) ) ,
823
+ outputs : this . outputs . map ( ( output ) => JSON . parse ( output . format ( format ) ) ) ,
824
824
} ) ;
825
825
}
826
826
You can’t perform that action at this time.
0 commit comments