File tree 4 files changed +16
-1
lines changed
4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ dapp_testnet() {
50
50
# dynamic fee transaction (EIP-1559)
51
51
seth send " $A_ADDR " " on()" --gas 0xffff --password /dev/null --from " $ACC " --keystore " $TMPDIR " /8545/keystore --prio-fee 2gwei --gas-price 10gwei
52
52
53
+ B_ADDR=$( seth send --create 0x647175696e6550383480393834f3 --gas 0xffff --password /dev/null --from " $ACC " --keystore " $TMPDIR " /8545/keystore --prio-fee 2gwei --gas-price 10gwei)
54
+
55
+ [[ $( seth code " $B_ADDR " ) = 0x647175696e6550383480393834f3 ]] || error
56
+
53
57
# clean up
54
58
killall geth
55
59
}
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+ ## Unreleased
8
+
9
+ ### Fixed
10
+
11
+ Contract creations with Dynamic fee transactions.
12
+
7
13
## [0.17.0] - 2020-02-03
8
14
9
15
### Changed
Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ func main() {
398
398
} else if txtype == types .DynamicFeeTxType {
399
399
tx = types .NewTx (& types.DynamicFeeTx {
400
400
Nonce : nonce ,
401
- To : & common. Address {} ,
401
+ To : nil ,
402
402
Value : value ,
403
403
Gas : gasLimit ,
404
404
GasFeeCap : gasPrice ,
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## Unreleased
8
8
9
+ ### Fixed
10
+
11
+ Contract creations with Dynamic fee transactions.
12
+
13
+
9
14
### Changed
10
15
11
16
- ` seth 4byte ` command returns the response from querying [ 4byte.directory] ( https://www.4byte.directory/ ) for a given function signature
You can’t perform that action at this time.
0 commit comments