(channel, value)
| 138 | this.enqueueTxRaw(channel, 'i', bytes); |
| 139 | } |
| 140 | enqueueUint32(channel, value) { |
| 141 | let bytes = new Uint8Array(4); |
| 142 | (new DataView(bytes.buffer)).setUint32(0, value, true); |
| 143 | this.enqueueTxRaw(channel, 'I', bytes); |
| 144 | } |
| 145 | enqueueFloat(channel, value) { |
| 146 | let bytes = new Uint8Array(4); |
| 147 | (new DataView(bytes.buffer)).setFloat32(0, value, true); |
nothing calls this directly
no test coverage detected