(self)
| 123 | return |
| 124 | |
| 125 | def test_twelve(self): |
| 126 | self.assertEqual(uint256_from_compact(0x01123456), 0x0012) |
| 127 | self.assertEqual(compact_from_uint256(0x0012), 0x01120000) |
| 128 | |
| 129 | def test_from_uint256(self): |
| 130 | self.assertEqual(compact_from_uint256(0x1234), 0x02123400) |
nothing calls this directly
no test coverage detected