File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -677,7 +677,7 @@ impl Account {
677
677
}
678
678
AccountAddressType :: P2WPKH => {
679
679
if hash_type. as_u32 ( ) & SigHashType :: All . as_u32 ( ) == 0 {
680
- return Err ( Error :: Unsupported ( "can only sig all inputs for now" ) ) ;
680
+ return Err ( Error :: Unsupported ( "can only sign all inputs for now" ) ) ;
681
681
}
682
682
input. script_sig = Script :: new ( ) ;
683
683
let hasher =
@@ -698,7 +698,7 @@ impl Account {
698
698
}
699
699
AccountAddressType :: P2SHWPKH => {
700
700
if hash_type. as_u32 ( ) & SigHashType :: All . as_u32 ( ) == 0 {
701
- return Err ( Error :: Unsupported ( "can only sig all inputs for now" ) ) ;
701
+ return Err ( Error :: Unsupported ( "can only sign all inputs for now" ) ) ;
702
702
}
703
703
input. script_sig = Builder :: new ( )
704
704
. push_slice (
@@ -730,7 +730,7 @@ impl Account {
730
730
}
731
731
AccountAddressType :: P2WSH ( _) => {
732
732
if hash_type. as_u32 ( ) & SigHashType :: All . as_u32 ( ) == 0 {
733
- return Err ( Error :: Unsupported ( "can only sig all inputs for now" ) ) ;
733
+ return Err ( Error :: Unsupported ( "can only sign all inputs for now" ) ) ;
734
734
}
735
735
input. script_sig = Script :: new ( ) ;
736
736
let hasher =
You can’t perform that action at this time.
0 commit comments