mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 09:42:22 +00:00
network: fix grammar typo in the error message
This commit is contained in:
parent
475d9de2d5
commit
da757fa387
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ func (r *P2PNotaryRequest) isValid() error {
|
|||
return errors.New("fallback transaction should have one Conflicts attribute")
|
||||
}
|
||||
if conflicts[0].Value.(*transaction.Conflicts).Hash != r.MainTransaction.Hash() {
|
||||
return errors.New("fallback transaction does not conflicts with the main transaction")
|
||||
return errors.New("fallback transaction does not conflict with the main transaction")
|
||||
}
|
||||
nKeysFallback := r.FallbackTransaction.GetAttributes(transaction.NotaryAssistedT)
|
||||
if len(nKeysFallback) == 0 {
|
||||
|
|
Loading…
Reference in a new issue