9 lines
112 B
Go
9 lines
112 B
Go
package core
|
|
|
|
import "math/big"
|
|
|
|
type Block struct {
|
|
Number *big.Int
|
|
NumberOfTransactions int
|
|
}
|