John Reitano

Results 11 comments of John Reitano

I hit this same issue. I worked around the issue by temporarily commenting out the contents of ~/.bundle/config .

The stability fee can (and sometimes must) grow to much larger than the base transaction fee, so it can't simply be deducted from the base transaction fee. It really needs...

Paul, is there any issue with implementing the stability fee the way it is described in the white paper instead the way you initially described above?

When I call validator.start(x), I get an error message: ``` > validator.setCoinbase(kcoin.accounts[0]) true > x = mtoken.getBalance(kcoin.accounts[0]); 1.000002e+24 > validator.start(x); Error: invalid argument 0: math/big: cannot unmarshal "\"1.000002e+24\"" into a...

Suggest renaming "zygote testnet" to "primary testnet" to clarify what function it serves.

A few thoughts as we prepare to open this up to outsiders: • It doesn't seem that clear what the difference is between 2 and 3 above. Do we need...

Your example above has a Post (parent with has_many) being destroyed, where I think you want to test whether destroying a PostTags (child with belongs_to) will trigger the destruction of...

The problem here is that the line `query_constraints :company_id, :id` applies to all associations in `Blog`, including "belongs_to :category". The presence of query_constraints then prevents the setting of the foreign...

Yep, I'd say your adjustment is simpler therefore better.

[The docs for this method](https://api.rubyonrails.org/classes/ActiveRecord/Persistence/ClassMethods.html#method-i-query_constraints) say that the purpose of query_constraints is to add a list of attributes to the target object's `WHERE` and `ORDER BY` clauses. It doesn't say...