(b *testing.B)
| 134 | } |
| 135 | |
| 136 | func BenchmarkPaddedBigBytesLargePadding(b *testing.B) { |
| 137 | bigint := MustParseBig256("123456789123456789123456789123456789") |
| 138 | for i := 0; i < b.N; i++ { |
| 139 | PaddedBigBytes(bigint, 200) |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | func BenchmarkPaddedBigBytesSmallPadding(b *testing.B) { |
| 144 | bigint := MustParseBig256("0x18F8F8F1000111000110011100222004330052300000000000000000FEFCF3CC") |
nothing calls this directly
no test coverage detected