static bool TryReadGas(ref BufferReader <byte> reader, byte version, out Fixed8 gas)
            {
                if (version >= 1)
                {
                    return(Fixed8.TryRead(ref reader, out gas));
                }

                gas = Fixed8.Zero;
                return(true);
            }