Skip to content

Commit

Permalink
Feat: cleaned up more
Browse files Browse the repository at this point in the history
  • Loading branch information
hmoog committed Apr 1, 2022
1 parent 3f0ce97 commit 9a2609e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/refactored/txvm/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,12 +325,12 @@ func (t *Transaction) ObjectStorageValue() []byte {
}

// code contract (make sure the struct implements all required methods)
var _ payload.Payload = &Transaction{}
var _ payload.Payload = new(Transaction)

var _ utxo.Transaction = &Transaction{}
var _ utxo.Transaction = new(Transaction)

// code contract (make sure the struct implements all required methods)
var _ objectstorage.StorableObject = &Transaction{}
var _ objectstorage.StorableObject = new(Transaction)

// endregion ///////////////////////////////////////////////////////////////////////////////////////////////////////////

Expand Down

0 comments on commit 9a2609e

Please sign in to comment.