(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func TestInt64ToBigInt(t *testing.T) { |
| 21 | value := int64(123456789) |
| 22 | bigIntValue := Int64ToBigInt(value) |
| 23 | expected := big.NewInt(value) |
| 24 | assert.Equal(t, expected, bigIntValue) |
| 25 | } |
| 26 | |
| 27 | func TestTransaction_HashTxn(t *testing.T) { |
| 28 | txn := &Transaction{ |
nothing calls this directly
no test coverage detected