(b *testing.B)
| 141 | } |
| 142 | |
| 143 | func BenchmarkPaddedBigBytesSmallPadding(b *testing.B) { |
| 144 | bigint := MustParseBig256("0x18F8F8F1000111000110011100222004330052300000000000000000FEFCF3CC") |
| 145 | for i := 0; i < b.N; i++ { |
| 146 | PaddedBigBytes(bigint, 5) |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | func BenchmarkPaddedBigBytesSmallOnePadding(b *testing.B) { |
| 151 | bigint := MustParseBig256("0x18F8F8F1000111000110011100222004330052300000000000000000FEFCF3CC") |
nothing calls this directly
no test coverage detected