(bytes: &[u8], buf: &mut Vec<u8>)
| 69 | } |
| 70 | |
| 71 | fn put_bytes(bytes: &[u8], buf: &mut Vec<u8>) { |
| 72 | buf.extend_from_slice(bytes); |
| 73 | } |
| 74 | |
| 75 | fn put_address(a: &Address, buf: &mut Vec<u8>) { |
| 76 | put_bytes(a.as_bytes(), buf); |
no outgoing calls
no test coverage detected