ec17654986
add dao which takes care about all CRUD operations on storage remove blockchain state since everything is stored on change remove storage operations from structs(entities) move structs to entities package
9 lines
292 B
Go
9 lines
292 B
Go
package core
|
|
|
|
// slice attaches the methods of Interface to []int, sorting in increasing order.
|
|
type slice []uint32
|
|
|
|
func (p slice) Len() int { return len(p) }
|
|
func (p slice) Less(i, j int) bool { return p[i] < p[j] }
|
|
func (p slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
|
|
|