()
| 625 | } |
| 626 | |
| 627 | func (s *Script) CheckScriptSigStandard() (bool, string) { |
| 628 | if s.Size() > MaxTxInStandardScriptSigSize { |
| 629 | return false, "scriptsig-size" |
| 630 | } |
| 631 | if !s.IsPushOnly() { |
| 632 | return false, "scriptsig-not-pushonly" |
| 633 | } |
| 634 | |
| 635 | return true, "" |
| 636 | } |
| 637 | |
| 638 | func (s *Script) IsPayToScriptHash() bool { |
| 639 | size := len(s.data) |
no test coverage detected