ef5e7674db
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
13 lines
188 B
Go
13 lines
188 B
Go
package build
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
)
|
|
|
|
func TestEncodeMiningRewardInitial(t *testing.T) {
|
|
i := &big.Int{}
|
|
i.SetString("153686558225539943338", 10)
|
|
t.Logf("%#v", i.Bytes())
|
|
}
|