-
- Downloads
Message refactor (#322)
* Feat: refactored message + started to add tests * Refactor: go mod tidy * Refactor: continued to refactor message * Feat: updated to last hive.go + added Signature() methid * Feat: go mod tidy * Feat: added mutex to the signature write in Bytes() * Fix: fixed Signature method * Feat: refactored message methods * Feat: refactored output * Fix: fixed signature mismatch in tangle factory methods * Refactor: go mod tidy * Feat: added solditification logic to value tangle * Feat: fixed some code related to objectstorage factories * Feat: model refactor * Fix: fixed a bug in the models of the valuetangle * Feat: refactored storageprefix framework * Feat: refactored some code * Refactor: additional refactor in OS logic * Refactor: refactored MissingPayload model * Refactor: refactored further models
Showing
- go.mod 1 addition, 1 deletiongo.mod
- go.sum 4 additions, 0 deletionsgo.sum
- packages/binary/messagelayer/tangle/storageprefixes.go 8 additions, 0 deletionspackages/binary/messagelayer/tangle/storageprefixes.go
- packages/binary/messagelayer/tangle/tangle.go 7 additions, 13 deletionspackages/binary/messagelayer/tangle/tangle.go
- packages/binary/messagelayer/tangle/tangle_test.go 2 additions, 2 deletionspackages/binary/messagelayer/tangle/tangle_test.go
- packages/binary/storageprefix/storageprefix.go 6 additions, 19 deletionspackages/binary/storageprefix/storageprefix.go
- packages/binary/valuetransfer/payload/payload.go 34 additions, 28 deletionspackages/binary/valuetransfer/payload/payload.go
- packages/binary/valuetransfer/tangle/attachment.go 37 additions, 24 deletionspackages/binary/valuetransfer/tangle/attachment.go
- packages/binary/valuetransfer/tangle/consumer.go 7 additions, 4 deletionspackages/binary/valuetransfer/tangle/consumer.go
- packages/binary/valuetransfer/tangle/missingoutput.go 50 additions, 28 deletionspackages/binary/valuetransfer/tangle/missingoutput.go
- packages/binary/valuetransfer/tangle/missingpayload.go 47 additions, 20 deletionspackages/binary/valuetransfer/tangle/missingpayload.go
- packages/binary/valuetransfer/tangle/objectstorage.go 55 additions, 0 deletionspackages/binary/valuetransfer/tangle/objectstorage.go
- packages/binary/valuetransfer/tangle/payloadapprover.go 45 additions, 13 deletionspackages/binary/valuetransfer/tangle/payloadapprover.go
- packages/binary/valuetransfer/tangle/payloadmetadata.go 48 additions, 37 deletionspackages/binary/valuetransfer/tangle/payloadmetadata.go
- packages/binary/valuetransfer/tangle/tangle.go 11 additions, 24 deletionspackages/binary/valuetransfer/tangle/tangle.go
- packages/binary/valuetransfer/tangle/tangle_test.go 1 addition, 1 deletionpackages/binary/valuetransfer/tangle/tangle_test.go
- packages/binary/valuetransfer/transaction/output.go 5 additions, 5 deletionspackages/binary/valuetransfer/transaction/output.go
- plugins/messagelayer/plugin.go 1 addition, 2 deletionsplugins/messagelayer/plugin.go
... | ... | @@ -10,7 +10,7 @@ require ( |
github.com/googollee/go-engine.io v1.4.3-0.20190924125625-798118fc0dd2 | ||
github.com/googollee/go-socket.io v1.4.3-0.20191204093753-683f8725b6d0 | ||
github.com/gorilla/websocket v1.4.1 | ||
github.com/iotaledger/hive.go v0.0.0-20200330121034-e4a505bcf2cd | ||
github.com/iotaledger/hive.go v0.0.0-20200403132600-4c10556e08a0 | ||
github.com/iotaledger/iota.go v1.0.0-beta.14 | ||
github.com/labstack/echo v3.3.10+incompatible | ||
github.com/labstack/gommon v0.3.0 // indirect | ||
... | ... |
Please sign in to comment