forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support init free gas * support prior pack tx * init initFreeAddress * txTracker gp use default gp * start bridge service on testing * Update Makefile * Update docker-compose.yml * update config * and bridge ui * start bridge ui * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update Makefile * opt code * Update docker-compose.yml * Update docker-compose.yml * Update test.bridge.config.toml * add cfg of nonce * Update Makefile * Update test.node.config.toml * Update docker-compose.yml * create table pool.free_gas * rename FreeGasNonce to FreeGasCountPerAddr * Update test.node.config.toml * get addr from input * fix addr * del log * add cfg of free gaslimit * fix lint and json * fix UT * Update test.node.config.toml * Update test.node.config.toml * Update pool.go * and free gas config * fix * add dgp * add AddDynamicGp * fix lint * add GetDynamicGasPrice * fix rpc * test * fix ut * test * log error * fix ut * fix ut * fix ut * fix ut * fix ut * test * test * fix ut * use dgp * fix ut * update error msg * opt code * opt code * opt code * opt code * opt code * Update pool_xlayer.go * Update pool_xlayer.go * Update pool_xlayer.go * opt code * fix lint --------- Co-authored-by: ylsGit <[email protected]>
- Loading branch information
1 parent
8100533
commit d405aa5
Showing
26 changed files
with
750 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- +migrate Up | ||
CREATE TABLE IF NOT EXISTS pool.free_gas ( | ||
addr varchar NOT NULL PRIMARY KEY | ||
); | ||
|
||
-- +migrate Down | ||
DROP TABLE IF EXISTS pool.free_gas; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.