(b *testing.B)
| 284 | } |
| 285 | |
| 286 | func BenchmarkGenerateBlock(b *testing.B) { |
| 287 | b.Skip() // b.N reaches 50000 which can eventually kill the process on macosx |
| 288 | for i := 0; i < b.N; i++ { |
| 289 | benchGenBlock(b) |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | func benchGenBlock(b *testing.B) { |
| 294 | const tx1hex = ("07" + // serflags |
nothing calls this directly
no test coverage detected