-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* delete recent price from db when delisting (#753) delete recent price from db when delisting * bump up version * update changelog * delete recent price key when recent price map is empty (#760) * Force match all BEP2 symbols on BEP8 upgrade height to update last ma… (#758) Force match all BEP2 symbols on BEP8 upgrade height to update last match height * Fix mini msg (#762) * fix unfreeze err msg; adjust mini issue/list fee; update changelog
- Loading branch information
1 parent
ec6fe94
commit 56c4912
Showing
30 changed files
with
409 additions
and
166 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/expect | ||
|
||
set symbol [lindex $argv 0] | ||
set amount [lindex $argv 1] | ||
set from [lindex $argv 2] | ||
set chain_id [lindex $argv 3] | ||
set home [lindex $argv 4] | ||
|
||
set timeout 30 | ||
if {"${home}" == ""} { | ||
spawn ./bnbcli token mint -s $symbol -n $amount --from $from --chain-id $chain_id | ||
} else { | ||
spawn ./bnbcli token mint --home $home -s $symbol -n $amount --from $from --chain-id $chain_id | ||
} | ||
expect "Password*" | ||
send "12345678\r" | ||
interact |
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 |
---|---|---|
|
@@ -212,4 +212,4 @@ func listPairs(keeper *DexKeeper, ctx sdk.Context, abciPrefix string) []types.Tr | |
} | ||
} | ||
return rs | ||
} | ||
} |
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.