Skip to content

Commit

Permalink
fix issue with tx decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
sheb-gregor committed Dec 16, 2019
1 parent 25f2d4b commit 956d48d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (tx *ServiceTx) Serialize() ([]byte, error) {
}

func (ServiceTx) DecodeSignedTx(rawTx string, schema Schema) (ServiceTx, error) {
return ServiceTx{}.DecodeSignedWSchemaProvider(rawTx, func(uint16, uint16) (schema Schema, e error) {
return ServiceTx{}.DecodeSignedWSchemaProvider(rawTx, func(uint16, uint16) (Schema, error) {
return schema, nil
})
}
Expand Down

0 comments on commit 956d48d

Please sign in to comment.