CC1101 not receiving message

The setup is two Arduino Unos, each with their own level converter, and CC1101.

The logs do not indicate any errors, but the receiver never picks up the transmitted message.

This is the level converter used: Level Convert Hookup Guide

Question 1: Are the level converter's power pins hooked up right?
Arduino - Level Converter
5V - HV
3.3V - LV
Gnd - Gnd on HV side

Question 2: Is this sufficient power?
The CC1101 is powered by the Arduino 3.3V. The Arduino 3.3V is 50 mA. The spec does not list any modes that required this much power, but I did not see any general statement about power requirements. Does the level converter consume some of this power?
CC1101 Spec

Question 3: Any other advice about troubleshooting?
This uses Panstamp library. Here is RX log:
start
CC1101_PARTNUM 0
CC1101_VERSION 20
CC1101_MARCSTATE 1
device initialized
packet received
CC1101_RSSI 137
CC1101_LQI 63

esdad697:
The CC1101 is powered by the Arduino 3.3V. The Arduino 3.3V is 50 mA.

Does the level converter consume some of this power?

This is probably taken from the Uno spec sheet, which is wrong.

The 3.3volt regulator of the Uno can supply 150mA.
More than enough to power a ~34mA (max) radio.

The level converter draws <1mA (pull up resistors).
Leo..