mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
mobile: Fix comment - correct direction & unify naming
This commit is contained in:
parent
138f26c93a
commit
8cd3227584
1 changed files with 2 additions and 2 deletions
|
|
@ -133,8 +133,8 @@ public class AndroidTest extends InstrumentationTestCase {
|
|||
Transaction postEIP155 = new Transaction(postEIP155RLP);
|
||||
|
||||
preEIP155.getFrom(null); // Homestead should accept homestead
|
||||
preEIP155.getFrom(new BigInt(4)); // EIP155 should accept homestead (missing chain ID)
|
||||
postEIP155.getFrom(new BigInt(4)); // EIP155 should accept EIP 155
|
||||
preEIP155.getFrom(new BigInt(4)); // Homestead should accept EIP155 (missing chain ID)
|
||||
postEIP155.getFrom(new BigInt(4)); // EIP155 should accept EIP155
|
||||
|
||||
try {
|
||||
postEIP155.getFrom(null);
|
||||
|
|
|
|||
Loading…
Reference in a new issue