mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-22 11:31:02 +00:00
11 lines
138 B
Plaintext
11 lines
138 B
Plaintext
|
// -*- mode: go -*-
|
||
|
|
||
|
package test
|
||
|
|
||
|
import "github.com/holiman/uint256"
|
||
|
|
||
|
type Test struct {
|
||
|
Int *uint256.Int
|
||
|
IntNoPtr uint256.Int
|
||
|
}
|